Android LinearLayout 线性布局开发讲解
程序员文章站
2023-12-14 17:05:16
android布局
1、linearlayout布局(线性布局)
线性布局它是水平或者垂直来排列的布局。
详解:
首先要设置布局的排列方式它有垂直排列和水平排列,
垂直排列:android:orie...
android布局
1、linearlayout布局(线性布局)
线性布局它是水平或者垂直来排列的布局。
详解:
首先要设置布局的排列方式它有垂直排列和水平排列,
垂直排列:android:orientation="vertical"
水平排列:android:orientation="horizontal"
(1)加权重:
android:layout_weight="值
(2)设置大小给宽高:
水平布局宽为0,垂直布局高为0.
代码案例:
xml version="1.0" encoding="utf-8"> <linearlayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:app="https://schemas.android.com/apk/res-auto" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".ccd" android:orientation="vertical" > <button android:layout_width="200dp" android:layout_height="0dp" android:layout_weight="2" android:text="左边" android:background="#0f0" /> <button android:layout_width="200dp" android:layout_height="0dp" android:layout_weight="2" android:text="右边" android:layout_gravity="right" android:background="#aaa" /> <button android:layout_width="200dp" android:layout_height="0dp" android:layout_weight="1" android:text="左边" android:background="#7788d6" /> linearlayout>
效果图:
=====================================================================
推荐阅读
-
Android LinearLayout 线性布局开发讲解
-
android LinearLayout 布局实例代码
-
Android开发实现布局中为控件添加选择器的方法
-
Android 布局控件之LinearLayout详细介绍
-
Android 页面多状态布局管理的开发
-
Android LinearLayout 线性布局开发讲解
-
android LinearLayout和RelativeLayout组合实现精确布局方法介绍
-
android 线性布局LinearLayout实例代码
-
android LinearLayout 布局实例代码
-
Android自定义LinearLayout布局显示不完整的解决方法