Как вставить динамически генерируемые текстовые представления в цикле внутри макета ограничения? - PullRequest
0 голосов
/ 04 апреля 2019

Я пытаюсь программно включить несколько представлений из цикла в макет ограничения. Как мне это сделать?

Я хочу что-то вроде этого:
I want something like this

Я могу сделать это для одного представления, но я не могу сделать то же самое для нескольких представлений внутри цикла. По сути, у меня есть вид прокрутки, и внутри него две строки сверху и снизу, я хочу включить текстовые представления, которые я создал программно между этими строками. Я предоставил следующие строки кода:

final TextView[] myTextViews = new TextView[3];
        int i=1;
        ConstraintSet constraintSet = new ConstraintSet();
        myTextViews[i-1] = new TextView(this);
        myTextViews[i-1].setId(R.id.testid);
        myTextViews[i-1].setText("Text 1");
        ConstraintLayout.LayoutParams test = new ConstraintLayout.LayoutParams(
                ConstraintLayout.LayoutParams.MATCH_CONSTRAINT, ConstraintLayout.LayoutParams.WRAP_CONTENT);
        myTextViews[i-1].setLayoutParams(test);
        constraintLayout.addView(myTextViews[i-1]);
        constraintSet.clone(constraintLayout);
        constraintSet.connect(myTextViews[i-1].getId(), ConstraintSet.TOP, lineTop.getId(), ConstraintSet.BOTTOM, 28);
        constraintSet.connect(myTextViews[i-1].getId(), ConstraintSet.LEFT, constraintLayout.getId(), ConstraintSet.LEFT, 70);
        constraintSet.connect(myTextViews[i-1].getId(), ConstraintSet.RIGHT, constraintLayout.getId(), ConstraintSet.RIGHT, 70);

        constraintSet.applyTo(constraintLayout);
        for ( i = 1; i < 3; i++) {
            myTextViews[i] = new TextView(this);
            myTextViews[i].setId(R.id.testid+i);
            myTextViews[i].setText("Hello World "+i);
            myTextViews[i].setLayoutParams(test);
            constraintLayout.addView(myTextViews[i]);
            constraintSet.connect(myTextViews[i].getId(), ConstraintSet.TOP, myTextViews[i-1].getId(), ConstraintSet.BOTTOM, 28);
            constraintSet.connect(myTextViews[i].getId(), ConstraintSet.LEFT, constraintLayout.getId(), ConstraintSet.LEFT, 76);
            constraintSet.connect(myTextViews[i].getId(), ConstraintSet.RIGHT, constraintLayout.getId(), ConstraintSet.RIGHT, 76);
            constraintSet.applyTo(constraintLayout);
        }
        constraintSet.connect(lineBottom.getId(), ConstraintSet.TOP, myTextViews[i-1].getId(), ConstraintSet.BOTTOM, 8);
        constraintSet.applyTo(constraintLayout);

Ниже приведен код XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/relativeLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.reddevil.practice.practiceActivity">


    <ScrollView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="184dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="72dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <android.support.constraint.ConstraintLayout
            android:id="@+id/scroll"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/text1"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:background="@drawable/textgps"
                android:text="Random Text"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="parent" />
           <TextView
                android:id="@+id/lineTop"
                android:layout_width="0dp"
                android:layout_height="0dp"    
                android:text=" "
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/dropoff" />

            <TextView
                android:id="@+id/forstops"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:text=" "
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="1.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/lineTop" />
           <TextView
                android:id="@+id/text2"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:background="@drawable/textgps"
                android:text="Random Text"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="parent" />

        </android.support.constraint.ConstraintLayout>
    </ScrollView>
</android.support.constraint.ConstraintLayout>

Ответы [ 2 ]

0 голосов
/ 04 апреля 2019

Вы должны использовать 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);
}

Если у вас малоэлементы для показа это нормально делать, но не пытайтесь составить список с сотней просмотров, это было бы ужасно для выступлений

0 голосов
/ 04 апреля 2019

То, что вы можете сделать, это сделать компонент многократного использования (в зависимости от того, какое изображение вы предоставили, пользовательский текстовый просмотр)А в основном XML-файле вы можете использовать ListView или RecyclerView внутри ScrollView для использования этого повторно используемого компонента.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...