私はLinearLayout
を4つのボタンで使用しようとしましたが、最後のボタンはカットされました。どのように私は、ボタンの幅がどのように私のボタンを編集することができます
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:gravity="center_horizontal"
android:orientation="horizontal">
<Button
android:id="@+id/red"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RED" />
<Button
android:id="@+id/blue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="BLUE" />
<Button
android:id="@+id/yellow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="YELLOW" />
<Button
android:id="@+id/green"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GREEN" />
</LinearLayout>
すべてsmartphones'resolutionsに対応し得るために、私のコードを編集することができます
layout_weight
を調整することにより、この均等に分割レイアウトを取得する
android:layout_weight = "1" –