3つの事でHrizontalリニアレイアウトを調整します。覚えておくべき3つのアンドロイド
はアンドロイドを設定します。子供のlayout_width「0dp」へ
はアンドロイドを設定:親のweightSum(編集:
各子供のandroid:layout_weightを比例的に に設定します(例:weightSum = "5"、3人の子供:layout_weight = "これは子供のレイアウト_体重の合計に設定されているため、この属性はオプションです) 1 "、layout_weight =" 3 "、layout_weight =" 1 ")
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="5">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text="2" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="3" />
</LinearLayout>
を試すことができますか..? –
3つのテキストビュー/ボタンをすべての種類のデバイスでサポートしています。 – RajeshkumarG