关山初度尘未洗,策马扬鞭再奋蹄!这篇文章主要讲述android的线性布局相关的知识,希望能为你提供帮助。
【android的线性布局】
<
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<
LinearLayout
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:layout_weight="0.5">
<
TextView
android:text="green"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="#00aa00"
/>
<
TextView
android:text="blue"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="#0000aa"
/>
<
/LinearLayout>
<
LinearLayout
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="1">
<
TextView
android:text="row one"
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="#aa0000"
/>
<
TextView
android:text="row two"
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="#aaaa00"
/>
<
/LinearLayout>
<
/LinearLayout>
推荐阅读
- Android CTS
- Android学习笔记--TabLayout的简单使用
- android 6.0权限检测和请求
- Android入门--实现选择并编辑图片设置成头像
- android继承TextView的高度宽度计算问题
- android Toast大全(五种情形)建立属于你自己的Toast
- android 5.0 imageButton自带阴影解决方案
- Android官方开发文档Training系列课程中文版(Android的JNI相关)
- android 6.0权限判断音频 拍照 相册