Android 线性布局 LinearLayout
程序员文章站
2022-05-22 16:54:16
垂直布局 vertical 水平布局 horizontal ......
垂直布局 vertical
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="测试按钮1" /> <button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="测试按钮2" /> </linearlayout>
水平布局 horizontal
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" >
推荐阅读
-
Android编程布局控件之AbsoluteLayout用法实例分析
-
Android编程之绝对布局AbsoluteLayout和相对布局RelativeLayout实例详解
-
android LinearLayout和RelativeLayout组合实现精确布局方法介绍
-
Android开发实现popupWindow弹出窗口自定义布局与位置控制方法
-
Android制作漂亮自适布局键盘的方法
-
Android RelativeLayout相对布局属性简析
-
Android编程之代码创建布局实例分析
-
Android RecyclerView网格布局(支持多种分割线)详解(2)
-
Android RecyclerView线性布局详解(1)
-
Android不使用自定义布局情况下实现自定义通知栏图标的方法