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

Android:控件布局(线性布局)

时间:2014-06-12 15:27:04      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:android   style   class   blog   code   java   

android:orientation指定LinearLayout布局方向,值:vertical (垂直方向) 、horizontal(水平方向)

实例一:

bubuko.com,布布扣

bubuko.com,布布扣
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

<Button 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="按钮1"
    />

<Button 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="按钮2"
    />
<Button 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="按钮3"
    />
<Button 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="按钮4"
    />
</LinearLayout>
bubuko.com,布布扣

 

实例二:

bubuko.com,布布扣

bubuko.com,布布扣
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="按钮1"
    />

<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="按钮2"
    />
<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="按钮3"
    />
<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="按钮4"
    />
</LinearLayout>
bubuko.com,布布扣

Android:控件布局(线性布局),布布扣,bubuko.com

Android:控件布局(线性布局)

标签:android   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/tinyphp/p/3781665.html

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