一行顯示兩個(gè)TextView菇民,第二個(gè)TextView緊跟前一個(gè)尽楔,且保證第二個(gè)TextView顯示完全,超長(zhǎng)的話(huà)第一個(gè)則相應(yīng)顯示省略號(hào)的解決方案:
<TableLayout
android:id="@+id/ll_phone_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:shrinkColumns="0"
android:stretchColumns="1">
<TableRow>
<TextView
android:id="@+id/user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:includeFontPadding="false"
android:textColor="@color/drakgray"
android:textSize="16sp"
android:singleLine="true"
android:ellipsize="end"
android:textStyle="bold"
tools:text="Aksi Cepet"/>
<TextView
android:id="@+id/phone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:includeFontPadding="false"
android:textColor="@color/drakgray"
android:singleLine="true"
android:ellipsize="none"
android:textSize="16sp"
android:textStyle="bold"
tools:text="62983749823498"
android:layout_marginLeft="@dimen/define_const_5dp"/>
</TableRow>
</TableLayout>
看圖說(shuō)話(huà):