码迷,mamicode.com
首页 > 移动开发 > 详细

Android基础TOP3:线性布局的特点,常用属性,及权重值

时间:2017-04-08 14:57:32      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:.com   src   android   ica   演示   oid   bottom   ada   view   

线性布局是一种让视图水平或者垂直布排列的布局;

常用属性:

androuid:orientation :表示布局方向

  •  取值vertical表示垂直布局
  •  取值horizontal表示水平布局

android:gravity 表示视图对齐方式

  • 内容包括 TOP,bottom,left,right,center_vertical,center_horizontal,center
  • 可以使用“|”分割填写多个值

布局中的视图可以使用如下多个属性:

android:layout_gravity 表示单个视图的对齐方式

android:layout_weight 表示单个视图所在大小的比重

  • 当Layout_weight为0时候视图大小自身确定
  • 当layout_weight大于0时,视图在线性布局方向根据比重拉伸

代码演示:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="horizontal" >
 6     <Button 
 7         android:layout_width="200dp"
 8         android:layout_height="100dp"
 9         android:text="adaflkjn"
10         android:gravity="bottom|center_horizontal"/>
11 
12 </LinearLayout>

技术分享

android:gravity:是决定控件内元素在某个位置

<Button 
        android:layout_width="200dp"
        android:layout_height="100dp"
        android:text="adaflkjn"
        android:layout_gravity="center"/>

 

技术分享

android:layout_gravity是本元素在父元素里面显示的位置

weight的应用

<EditText 
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="1"
       android:hint="sdaf"/>
   <Button 
       android:layout_width="1dp"
       android:layout_height="wrap_content"
       android:layout_weight="0"
       android:text="klndgjl"
       />

技术分享

 <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_weight="0"
      android:text="weight为0"
      android:background="#FFF0F5"
      />
  <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="weight为1"
       android:layout_weight="1"
      android:background="#800080"
      />
   <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="weight为4"
       android:layout_weight="4"
      android:background="#4B0082"
      />

技术分享

 

Android基础TOP3:线性布局的特点,常用属性,及权重值

标签:.com   src   android   ica   演示   oid   bottom   ada   view   

原文地址:http://www.cnblogs.com/AndroidCSY/p/6681732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!