布局管理--线性布局

<?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:orientation="horizontal"
    android:gravity="top" >
	<Button
	    android:id="@+id/btn1"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:text="@string/btn1"></Button>
	<Button
	    android:id="@+id/btn2"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:text="@string/btn2"></Button>
</LinearLayout>

  

posted on 2013-10-31 13:52  wp456  阅读(178)  评论(0)    收藏  举报

导航