我是 android 新手,我的弹跳球游戏想要以下布局(见下图)。请告诉我要使用哪种布局。
问问题
180 次
2 回答
1
我将使用一分为二的垂直线性布局。
像这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="PlayingArea" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="horizontal" >
<Button
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="left_lower_box" />
<Button
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="right_lower_box" />
</LinearLayout>
</LinearLayout>
这只是一个示例;您可能不会为您的应用程序使用按钮,您需要设置高度和宽度。
于 2012-09-30T05:36:51.520 回答
1
我建议您使用具有垂直方向的 LinearLayout,它分为两部分,一部分用于球反弹,另一部分用于设计乐谱布局。乐谱布局可以再次设计为带有水平方向的线性布局
于 2012-09-30T05:39:27.900 回答