<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.roll.MainActivity" >
<Button
android:id="@+id/pause"
android:text="暂停"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/Up"
android:text="向上"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/pause"
android:layout_centerHorizontal="true"
/>
<Button
android:id="@+id/Down"
android:text="向下"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/pause"
android:layout_centerHorizontal="true"/>
<Button
android:id="@+id/Left"
android:text="向左"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/pause"
android:layout_centerVertical="true"/>
<Button
android:id="@+id/Right"
android:text="向右"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/pause"
android:layout_centerVertical="true"/>
</RelativeLayout>
安卓控件布局
最新推荐文章于 2022-04-01 20:39:32 发布