我正在尝试在我的布局中构建这种线:
“总………………1000”
我需要根据从网络收到的内容更改“1000”。结果,我必须更改 "........." 的宽度。单词“Total”只是一个最终的 TextView。如何在布局中实现它?当手机变为横向时“.....”(点)必须更长,我不知道如何实现它。
所以我有 3 个部分:TextView “Total”、TextView “....”(点)和 TextView “1000”,它可以是从 1 到无穷大的任何数字。如何实现它们以根据屏幕大小在它们之间显示强制性的“总计”和“1000”以及“.....”?
以下 xml 没有成功。
<RelativeLayout
android:id="@+id/statistic_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/statistic_separator"
android:orientation="horizontal"
android:padding="15dp">
<TextView android:id="@+id/published_recepies"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="18dp"
android:layout_alignParentLeft="true"
android:textColor="@color/dark_orange"
android:text="Total"/>
<TextView android:id="@+id/dots"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:layout_toRightOf="@+id/published_recepies"
android:textColor="@color/dark_orange"
android:text="@string/dots"/>
<TextView android:id="@+id/published_recepies_data"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18dp"
android:layout_alignParentRight="true"
android:textColor="@color/dark_orange"
android:text="323"/>
</RelativeLayout>