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

android布局----LinearLayout布局方式

时间:2015-02-11 23:24:11      阅读:469      评论:0      收藏:0      [点我收藏+]

标签:

线性布局,控件成直线方式排列,要么水平排列,要么垂直排列。

对着layout文件夹右键,然后选择新建android xml file,选择资源类型选择 layout --> 根节点选择 LinearLyout

<?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" >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="第一个TextView" />
    <TextView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:background="#00FF00"
        android:text="第二个TextView"></TextView>

</LinearLayout>

android:orientation设置方向(垂直(vertical)和水平(horizontal)),如果设置布局方向是水平的话,那么控件的width就不要设置为相对父控件,不然其他控件就会被挤出屏幕外面去了。

效果:技术分享


android布局----LinearLayout布局方式

标签:

原文地址:http://my.oschina.net/Sadhu/blog/377830

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