码迷,mamicode.com
首页 > 其他好文 > 详细

布局(1、线性布局)

时间:2015-01-23 21:22:05      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

1、android线性布局最为基础,基本框架如下:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>

其中 layout_width 和 layout_height 为该线性布局的高、宽;

wrap_content:设置该视图尺寸为能够展示内部全部控件;

match_parent/fill_parent:设置该视图尺寸为填满父视图全部空间;

其中orientation 设置线性布局的方向,及vertical(垂直)和horizantal(水平)

 

2、布局也可利用paddint\margin参数调整位置,如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginLeft="10dip"
    android:orientation="vertical"
    android:paddingTop="17dip" >

与web中的盒式布局类似,margin代表视图与父视图的边距,而padding代表自身与内部控件的边距

线性布局可采用gravity参数设置内部控件居中,例如:

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" 
        android:gravity="center_vertical">

布局(1、线性布局)

标签:

原文地址:http://www.cnblogs.com/Fredric-2013/p/4107336.html

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