android布局之线性布局
生活随笔
收集整理的這篇文章主要介紹了
android布局之线性布局
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
LinearLayout 線性布局有兩種,分別是水平線性布局和垂直線性布局,LinearLayout屬性中android:orientation為設置線性布局當其="vertical"時,為 垂直線性布局,當其="horizontal"時,為水平線性布局,不管是水平還是垂直線性布局一行(列)只能放置一個控件。
下面我們舉例說明:
垂直線性布局
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <EditText android:layout_width="100dp" android:layout_height="wrap_content" /> <Button android:layout_width="100dp" android:layout_height="wrap_content" android:text="Button1"/> <Button android:layout_width="100dp" android:layout_height="wrap_content" android:text="button2"/> </LinearLayout>
運行的結果:
水平線性布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <EditText android:layout_width="100dp" android:layout_height="wrap_content" /> <Button android:layout_width="100dp" android:layout_height="wrap_content" android:text="Button1"/> <Button android:layout_width="100dp" android:layout_height="wrap_content" android:text="button2"/> </LinearLayout>
運行結果:
?
總結
以上是生活随笔為你收集整理的android布局之线性布局的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 安装win7时,无法创建新的分区系统和无
- 下一篇: 手工成本维护不可以将成本改为零