我尝试将按钮放在屏幕上。我希望这个屏幕在整个屏幕上被分割在同一个空间中。我阅读了很多关于在 android:layout_weight 中使用的答案,但我没有成功。
代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<Button
android:id="@+id/p_data_button"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:layout_gravity="center"
android:background="@drawable/p_selector"
/>
<Button
android:id="@+id/p1_data_button"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:layout_gravity="center"
android:background="@drawable/p1_selector"
/>
<Button
android:id="@+id/p2_data_button"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:layout_gravity="center"
android:background="@drawable/p2_selector"
/>
<Button
android:id="@+id/p3_data_button"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:layout_gravity="center"
android:background="@drawable/p3_selector"/>
</LinearLayout>
编辑:
这个背景与选择器一起工作。它受到影响吗?
我添加答案。