android布局之LinearLayout
2010-05-29 06:00:00 来源:WEB开发网android:background="#aaaa00"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/ >
< /LinearLayout >
< LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2" >
< TextView
android:text="row one"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/ >
< TextView
android:text="row two"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/ >
< TextView
android:text="row three"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/ >
< TextView
android:text="row four"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/ >
< /LinearLayout >
< /LinearLayout >
感觉这种形式有点像div+css的方式布局,不过这种方式的灵活性和div+css还是有些不及,主要是那android:layout_weight的值如何去确定,而且采用的是数值越小,重要度越高的方式,分配起来还得好好计算一下。
Java代码
1. Views.java
2.
3.
4. package com.cn.view;
5.
6. import android.app.Activity;
7. import android.os.Bundle;
8.
9. public class Views extends Activity {
10. /** Called when the activity is first created. */
Tags:android 布局 LinearLayout
编辑录入:coldstar [复制链接] [打 印]更多精彩
赞助商链接