我想在我的Layout中構建這種線:Android在佈局中的定位
「Total ...................... 1000 「
我需要根據我從網絡接收的內容更改」1000「。因此我必須改變「.........」的寬度。 Word「Total」只是一個最終的TextView。如何在佈局中實現它?當手機改變爲風景「.....」(點)必須更長,我不知道如何實現它。因此,我有3個部分:TextView「Total」,TextView「....」(點)和TextView「1000」,它們可以是從1到無窮大的任何namber。如何實現它們,以便根據屏幕的大小顯示強制的「Total」和「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>
我嘗試過 - 這有效。非常感謝你 – Stas
歡迎好友..!快樂編碼..!如果我爲第二個問題找到任何解決方案,我肯定會更新我的答案。 – user370305
謝謝。我感謝你的幫助。 – Stas