赞
踩
/***下面是自己简单了解所写的代码***/
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".MainActivity">
- /***上面为系统默认配置***/
- (其中我们把整体的布局设置为LinearLayout,那么里面的整体都是线性的,但是线性里面可以嵌套其他布局,后续会讲到)
-
- <LinearLayout
- android:id="@+id/l_12" #id命令声明名字
- android:layout_width="200dp"
- android:layout_height="200dp" #宽度和高度命令
- android:background="#000000" #背景颜色命令
- android:padding="20dp" #内嵌区域距边宽度命令
- android:orientation="horizontal" #模块方向为水平方向
- android:layout_marginBottom="20dp" #并列区域相距的距离
- >
-
- <View #在线性布局下,在内嵌俩个小区域
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:background="#0ffff2"
- android:layout_marginRight="20dp"
- />
-
- <View
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:background="#0ffff2"
- />
- </LinearLayout>
-
- <LinearLayout #并列线性布局
- android:id="@+id/l_13"
- android:layout_width="200dp"
- android:layout_height="200dp"
- android:background="#000000"
- android:padding="20dp" #内嵌区域距边宽度命令
- >
-
- <View #内嵌一个小区域
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#0ffff2"
- />
- </LinearLayout>
-
-
- </LinearLayout>
系统时时模拟效果
系统虚拟机模拟
夜神模拟器模拟
- <LinearLayout
- android:id="@+id/l_13"
- android:layout_width="match_parent"
- android:layout_height="200dp"
- android:background="#000000"
- android:padding="20dp"
- >
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:background="#0ffff2"
- android:layout_weight="1" #权重函数
- />
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:background="#0ff25f"
- android:layout_weight="1" #权重函数
- />
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:background="#880555"
- android:layout_weight="1" #权重函数
- />
-
- </LinearLayout>
如下图所示,三个并列函数占据第二个线性区域,各自权重为1,所以每一份站1/3.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。