Вы должны использовать RecyclerView или ListView для такого рода использования.
Если вы хотите работать с этим, вам нужно немного обновить вещи
Первое: не используйтеМакет ограничения (тот, что с идентификатором scroll
, замените его на LinearLayout
с атрибутом android:orientation="vertical"
, у вас будет XML-макет, который выглядит следующим образом (я упрощаю его только с важным атрибутом, новам тоже нужно другое)
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout >
<ScrollView
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/textgps"
android:text="Random Text"/>
<View style="@style/Divider"/>
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"/>
<View style="@style/Divider"/>
<TextView
android:id="@+id/text2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@drawable/textgps"
android:text="Random Text"/>
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
Затем, чтобы добавить вас TextViews:
final TextView[] myTextViews = new TextView[3];
LinearLayout container = findViewById(R.id.container);
LinearLayout .LayoutParams test = new LinearLayout .LayoutParams(
LinearLayout.LayoutParams.MATCH_CONSTRAINT, LinearLayout.LayoutParams.WRAP_CONTENT);
for ( i = 1; i < 3; i++) {
myTextViews[i] = new TextView(this);
//i don't think you should do that
//myTextViews[i].setId(R.id.testid+i);
myTextViews[i].setText("Hello World "+i);
myTextViews[i].setLayoutParams(test);
container.addView(myTextViews[i]);
}
Но у вас мало форматирования в ваших textViews ...
Вы можете создать XML-файл макета для каждой добавляемой строки, чтобы вы могли легко настроить его:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/text_row_text"
android:layout_width="0px"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textSize="@dimen/text_size_data"
android:layout_marginLeft="15dp"
android:layout_marginStart="15dp"/>
<Button
android:id="@+id/text_row_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/colorError"
android:text="X"/>
</LinearLayout>
Код будет выглядеть следующим образом:
//List of strings instead of TextViews
String[] strings = {"test1","test2","test3"}
LinearLayout container = findViewById(R.id.container);
for(String s : strings){
//R.layout.text_row is the layout file we just created
View row = getLayoutInflater().inflate(R.layout.text_row, null);
container.addView(row);
TextView text = row.findViewById(R.id.text_row_text);
text.setText(s);
}
Если у вас малоэлементы для показа это нормально делать, но не пытайтесь составить список с сотней просмотров, это было бы ужасно для выступлений