我現在有一個2列布局,看起來像這樣:Android - 如何將我的2列布局更改爲具有動態寬度?
<TextView android:id="@+id/TRAIN_CELL"
android:layout_width="275dip"
android:layout_height="wrap_content"
android:textSize="16sp"/>
<TextView android:id="@+id/TO_CELL"
android:layout_width="25dip"
android:textSize="20sp"
android:textStyle="bold"
android:gravity="center"
android:textColor="@color/light_best_blue"
android:layout_height="wrap_content"
android:layout_weight="1"/>
但這種做法我只是硬編碼的寬度,我不知道會發生什麼的更廣泛在較窄的屏幕上。有沒有辦法調整這個使用寬度的百分比?
謝謝!
使用LinearLayout並將適當的layout_weight設置爲childrens。 – Leonidos 2013-02-17 22:49:30