赞
踩
组件在activity中呈现的方式,包含组件大小、间距、对齐方式
Android提供了两种布局的实现方式:
线性布局是最简单的一种布局,将子组件按照垂直或者水平方向进行布局。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:id="@+id/textView1" android:layout_width="13dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="username:" android:layout_marginLeft="15dp"/> <EditText android:id="@+id/editText1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="2" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:id="@+id/textView2" android:layout_width="13dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="password:" android:layout_marginLeft="15dp"/> <EditText android:id="@+id/editText2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="2"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/button1" android:layout_width="160dp" android:layout_height="wrap_content" android:layout_marginLeft="45dp" android:layout_marginRight="10dp" android:text="submit" /> <Button android:id="@+id/button2" android:layout_width="160dp" android:layout_height="wrap_content" android:layout_marginRight="15dp" android:text="reset" /> </LinearLayout> </LinearLayout>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。