将一个 TextView 放在另一个 TextView 的右侧很容易,但是当基础 TextView 的宽度大于屏幕大小时,右侧 TextView 变得不可见。
我的 XML 布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/messages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
android:text="Messages" />
<TextView
android:id="@+id/counter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/bg_white_r30p0pl10"
android:drawableRight="@drawable/arrow_orange"
android:text="800" />
</LinearLayout>
即使基本 TextView 宽度很大,如何制作正确的 TextView 屏幕?
升级版:
换句话说,我需要:
如果第一个 TextView 很短:
|[ShotrTextView][TextView] |
如果第一个 TextView 很长:
|[LooooooongTextVi...][TextView]|