Android布局:如何以最小的空间将两个TextView彼此相邻放置

时间:2018-09-11 22:12:09

标签: android android-layout width

如何将两个带有动态文本的TextView彼此放在一起,以使TextView的宽度自动更改以最小化两个TextView的高度? 因此,文本较大的TextView应该更宽,两个TextView的高度(行数)应该相同。

1 个答案:

答案 0 :(得分:0)

在此使用此代码。
两种文本视图的高度都相同,而文本视图的宽度越多,文本占用的空间就越大

<?xml version="1.0" encoding="utf-8"?>
        <LinearLayout
            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:layout_width="match_parent"
            android:weightSum="2"
            android:layout_height="wrap_content">

            <TextView
                android:layout_weight="1"
                android:id="@+id/textView"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginLeft="16dp"
                android:layout_marginStart="16dp"
                android:text="TextView"/>
            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginEnd="8dp"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dp"
                android:layout_marginStart="8dp"
                android:layout_weight="1"
                android:text="TextView"/>
        </LinearLayout>