我是android的新手,我想要以下布局(见下图)我的弹跳球游戏。请告诉我使用哪种布局。
答案 0 :(得分:1)
我将使用Vertical linearLayout拆分为两个。
这样的事情:
<?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>
这只是一个样本;你可能不会为你的应用使用按钮,你需要设置高度和宽度。
答案 1 :(得分:1)
我建议你使用一个垂直方向的LinearLayout,它分为两个部分,一个用于球弹跳,另一个用于设计分数布局。 分数布局可以再次设计为具有方向水平
的linearLayout