在TableLayout中展开TextView

时间:2018-12-21 14:32:39

标签: android android-studio

我有一个TableLayout,其中每个TableRow都包含一个ImageView和一个TextView。如果文本内容不适合一行,我想让TextViews扩展为多行。

我尝试了许多不同的属性设置,例如将TextView设置为wrap_content,maxLines,scrollHorizo​​ntal = false,并且没有省略号。我也尝试将TableView设置为wrap_content,但是没有运气。我在网上可以找到的所有内容似乎都是关于没有嵌套在TableLayout中的TextView,因此我不知道TableLayout设置是否正在干扰其他答案。我能找到的最接近的相关问题是here,但对我而言不起作用。

下面是我的TableLayout的XML:

<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    android:gravity="center_vertical|start"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="5dp">

        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.15"
            app:srcCompat="@drawable/ic_info_24px" />

        <TextView
            android:id="@+id/AdditionalInfo"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_span="3"
            android:layout_weight="0.85"
            android:gravity="center_vertical|start"
            android:text="Additional Info that can potentially be too much for one line"
            android:textSize="16sp" />

    </TableRow>

</TableLayout>

1 个答案:

答案 0 :(得分:0)

尝试添加属性 android:inputType =“ textMultiLine” 到TextView。然后在属性android:layout_height中将“ match_parent”更改设置为“ wrap_content”。