当前位置: 代码迷 >> Android >> 安卓入门.相对布局习题
  详细解决方案

安卓入门.相对布局习题

热度:134   发布时间:2016-04-24 11:42:54.0
安卓入门.相对布局练习



<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent" >    	<Button 	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="进攻"	    android:layout_centerHorizontal="true"	    />		<Button 	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="撤退"	    android:layout_centerHorizontal="true"	    android:layout_alignParentBottom="true"	    />		<Button 	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="左钩拳"	    android:layout_centerVertical="true"	    />	<Button 	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="右钩拳"	    android:layout_centerVertical="true"	    android:layout_alignParentRight="true"	    />		<Button 	    android:text="必杀技"	    android:layout_centerInParent="true"	    android:id="@+id/bisha"	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    />	<Button 	    android:layout_toLeftOf="@id/bisha"	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="左"	    android:layout_alignTop="@id/bisha"	    />	<Button 	    android:layout_above="@id/bisha"	    android:text="上"	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:layout_centerHorizontal="true"	    />	<Button 	    android:layout_below="@id/bisha"	    android:text="下"	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:layout_centerHorizontal="true"	    />	<Button 	    android:layout_toRightOf="@id/bisha"	    android:layout_width="wrap_content"	    android:layout_height="wrap_content"	    android:text="右"	    android:layout_alignTop="@id/bisha"	    />	</RelativeLayout>
  相关解决方案