Почему мой TextView невидим с длинным текстом в предыдущем TextView в LinearLayout? - PullRequest
0 голосов
/ 07 мая 2019

У меня есть этот XML:

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <ImageView            
            style="@style/Icon"
            tools:background="@color/Black54Opacity" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:baselineAligned="false">

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="24dp"
                android:layout_weight="1"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <TextView                    
                    android:layout_width="wrap_content"
                    android:layout_height="24dp"                                        
                    android:ellipsize="end"                    
                    android:includeFontPadding="false"                    
                    android:maxLines="1"
                    android:padding="0dp"
                    android:textColor="@android:color/black"
                    android:textSize="20sp"
                    tools:text="LONG LONG LONG" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="18dp"                    
                    android:minWidth="18dp"
                    tools:text="2342"
                    tools:visibility="visible" />
            </LinearLayout>

            <TextView                
                android:layout_width="wrap_content"
                android:layout_height="24dp"
                android:gravity="center_vertical|end"
                android:textColor="4CAF50"
                tools:text="EDIT" />
        </LinearLayout>
    </LinearLayout>

Когда я вставляю короткий текст в мой первый TextView - у меня нет проблем. Short text Long text

Когда я вставляю длинный текст в мой первый textView - мой второй TextView перемещается под третий TextView. Very Very long text

Я хочу, чтобы размер текста в первом TextView можно было изменить до этой точки, чтобы другие два TextView не изменили свой размер.

Длинный текст в первом TextView в конце был эллиптическим. Второй TextView всегда должен быть прижат к левой стороне первого TextView.

Ответы [ 2 ]

0 голосов
/ 16 мая 2019

Мы нашли решение через ConstraintLayout.

  1. Удаляем все LinearLayout.
  2. Затем мы добавили app:layout_constrainedWidth="true" в мой первый TextView. Это очень важный атрибут.
0 голосов
/ 07 мая 2019

Используйте вес для вашего TextView

Попробуйте это

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity">

<ImageView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@mipmap/ic_launcher"
 android:fitsSystemWindows="true"
 android:scaleType="fitXY"
 android:id="@+id/img"/>

<LinearLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:weightSum="5"
 android:orientation="horizontal">


<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"/>

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2" />

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textAlignment="center"
android:layout_weight="1"
android:text="Edit"/>

</LinearLayout>

</LinearLayout>
...