【转】android 之LinearLayout布局

简介: 声明:这是android官方网站上的例子,添加了自己的理解,望各位大牛们多多指教 Java代码 main.xml main.

声明:这是android官方网站上的例子,添加了自己的理解,望各位大牛们多多指教

Java代码 复制代码 收藏代码
  1. main.xml
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <!--
  4. <LinearLayout>
  5. 线性版面配置,在这个标签中,所有元件都是按由上到下的排队排成的
  6. -->
  7. <LinearLayout
  8. xmlns:android="http://schemas.android.com/apk/res/android"
  9. android:orientation="vertical"
  10. android:layout_width="fill_parent"
  11. android:layout_height="fill_parent">
  12. <!-- android:orientation="vertical" 表示竖直方式对齐
  13. android:orientation="horizontal"表示水平方式对齐
  14. android:layout_width="fill_parent"定义当前视图在屏幕上
  15. 可以消费的宽度,fill_parent即填充整个屏幕。
  16. android:layout_height="wrap_content":随着文字栏位的不同
  17. 而改变这个视图的宽度或者高度。有点自动设置框度或者高度的意思
  18. layout_weight 用于给一个线性布局中的诸多视图的重要度赋值。
  19. 所有的视图都有一个layout_weight值,默认为零,意思是需要显示
  20. 多大的视图就占据多大的屏幕空 间。若赋一个高于零的值,则将父视
  21. 图中的可用空间分割,分割大小具体取决于每一个视图的layout_weight
  22. 值以及该值在当前屏幕布局的整体 layout_weight值和在其它视图屏幕布
  23. 局的layout_weight值中所占的比率而定。
  24. 举个例子:比如说我们在 水平方向上有一个文本标签和两个文本编辑元素。
  25. 该文本标签并无指定layout_weight值,所以它将占据需要提供的最少空间。
  26. 如果两个文本编辑元素每一个的layout_weight值都设置为1,则两者平分
  27. 在父视图布局剩余的宽度(因为我们声明这两者的重要度相等)。如果两个
  28. 文本编辑元素其中第一个的layout_weight值设置为1,而第二个的设置为2
  29. 则剩余空间的三分之二分给第一个,三分之一分给第二个(数值越小,重要
  30. 度越高)。
  31. -->
  32. <LinearLayout
  33. android:orientation="horizontal"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:layout_weight="1">
  37. <TextView
  38. android:text="red"
  39. android:gravity="center_horizontal"
  40. android:background="#aa0000"
  41. android:layout_width="wrap_content"
  42. android:layout_height="fill_parent"
  43. android:layout_weight="1"/>
  44. <TextView
  45. android:text="green"
  46. android:gravity="center_horizontal"
  47. android:background="#00aa00"
  48. android:layout_width="wrap_content"
  49. android:layout_height="fill_parent"
  50. android:layout_weight="1"/>
  51. <TextView
  52. android:text="blue"
  53. android:gravity="center_horizontal"
  54. android:background="#0000aa"
  55. android:layout_width="wrap_content"
  56. android:layout_height="fill_parent"
  57. android:layout_weight="1"/>
  58. <TextView
  59. android:text="yellow"
  60. android:gravity="center_horizontal"
  61. android:background="#aaaa00"
  62. android:layout_width="wrap_content"
  63. android:layout_height="fill_parent"
  64. android:layout_weight="1"/>
  65. </LinearLayout>
  66. <LinearLayout
  67. android:orientation="vertical"
  68. android:layout_width="fill_parent"
  69. android:layout_height="fill_parent"
  70. android:layout_weight="2">
  71. <TextView
  72. android:text="row one"
  73. android:textSize="15pt"
  74. android:layout_width="fill_parent"
  75. android:layout_height="wrap_content"
  76. android:layout_weight="1"/>
  77. <TextView
  78. android:text="row two"
  79. android:textSize="15pt"
  80. android:layout_width="fill_parent"
  81. android:layout_height="wrap_content"
  82. android:layout_weight="1"/>
  83. <TextView
  84. android:text="row three"
  85. android:textSize="15pt"
  86. android:layout_width="fill_parent"
  87. android:layout_height="wrap_content"
  88. android:layout_weight="1"/>
  89. <TextView
  90. android:text="row four"
  91. android:textSize="15pt"
  92. android:layout_width="fill_parent"
  93. android:layout_height="wrap_content"
  94. android:layout_weight="1"/>
  95. </LinearLayout>
  96. </LinearLayout>
main.xml


<?xml version="1.0" encoding="utf-8"?>
<!-- 
   <LinearLayout>
       线性版面配置,在这个标签中,所有元件都是按由上到下的排队排成的
 -->
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
   <!-- android:orientation="vertical" 表示竖直方式对齐
        android:orientation="horizontal"表示水平方式对齐
        android:layout_width="fill_parent"定义当前视图在屏幕上
                     可以消费的宽度,fill_parent即填充整个屏幕。
        android:layout_height="wrap_content":随着文字栏位的不同
        而改变这个视图的宽度或者高度。有点自动设置框度或者高度的意思
              
       layout_weight 用于给一个线性布局中的诸多视图的重要度赋值。
     所有的视图都有一个layout_weight值,默认为零,意思是需要显示
     多大的视图就占据多大的屏幕空 间。若赋一个高于零的值,则将父视
     图中的可用空间分割,分割大小具体取决于每一个视图的layout_weight
       值以及该值在当前屏幕布局的整体 layout_weight值和在其它视图屏幕布
     局的layout_weight值中所占的比率而定。
     举个例子:比如说我们在 水平方向上有一个文本标签和两个文本编辑元素。
    该文本标签并无指定layout_weight值,所以它将占据需要提供的最少空间。
    如果两个文本编辑元素每一个的layout_weight值都设置为1,则两者平分
    在父视图布局剩余的宽度(因为我们声明这两者的重要度相等)。如果两个 
   文本编辑元素其中第一个的layout_weight值设置为1,而第二个的设置为2,
   则剩余空间的三分之二分给第一个,三分之一分给第二个(数值越小,重要
              度越高)。
    -->
    <LinearLayout
	android:orientation="horizontal"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	android:layout_weight="1">
	<TextView
	    android:text="red"
	    android:gravity="center_horizontal"
	    android:background="#aa0000"
	    android:layout_width="wrap_content"
	    android:layout_height="fill_parent"
	    android:layout_weight="1"/>
	
	<TextView
	    android:text="green"
	    android:gravity="center_horizontal"
	    android:background="#00aa00"
	    android:layout_width="wrap_content"
	    android:layout_height="fill_parent"
	    android:layout_weight="1"/>
	
	<TextView
	    android:text="blue"
	    android:gravity="center_horizontal"
	    android:background="#0000aa"
	    android:layout_width="wrap_content"
	    android:layout_height="fill_parent"
	    android:layout_weight="1"/>
	
	<TextView
	    android:text="yellow"
	    android:gravity="center_horizontal"
	    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. package com.cn.view;
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5. public class Views extends Activity {
  6. /** Called when the activity is first created. */
  7. @Override
  8. public void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.main);
  11. }
  12. }
相关文章
|
5月前
|
XML Android开发 数据安全/隐私保护
10. 【Android教程】网格布局 GridLayout
10. 【Android教程】网格布局 GridLayout
292 1
|
20天前
|
ARouter Android开发
Android不同module布局文件重名被覆盖
Android不同module布局文件重名被覆盖
|
3月前
|
移动开发 监控 前端开发
构建高效Android应用:从优化布局到提升性能
【7月更文挑战第60天】在移动开发领域,一个流畅且响应迅速的应用程序是用户留存的关键。针对Android平台,开发者面临的挑战包括多样化的设备兼容性和性能优化。本文将深入探讨如何通过改进布局设计、内存管理和多线程处理来构建高效的Android应用。我们将剖析布局优化的细节,并讨论最新的Android性能提升策略,以帮助开发者创建更快速、更流畅的用户体验。
63 10
|
5月前
|
Android开发
08. 【Android教程】相对布局 RelativeLayout
08. 【Android教程】相对布局 RelativeLayout
72 0
|
29天前
|
ARouter Android开发
Android不同module布局文件重名被覆盖
Android不同module布局文件重名被覆盖
89 0
|
3月前
|
编解码 Android开发
【Android Studio】使用UI工具绘制,ConstraintLayout 限制性布局,快速上手
本文介绍了Android Studio中使用ConstraintLayout布局的方法,通过创建布局文件、设置控件约束等步骤,快速上手UI设计,并提供了一个TV Launcher界面布局的绘制示例。
52 1
|
4月前
|
Android开发 Kotlin
kotlin开发安卓app,如何让布局自适应系统传统导航和全面屏导航
使用`navigationBarsPadding()`修饰符实现界面自适应,自动处理底部导航栏的内边距,再加上`.padding(bottom = 10.dp)`设定内容与屏幕底部的距离,以完成全面的布局适配。示例代码采用Kotlin。
127 15
|
3月前
|
XML 数据可视化 API
Android经典实战之约束布局ConstraintLayout的实用技巧和经验
ConstraintLayout是Android中一款强大的布局管理器,它通过视图间的约束轻松创建复杂灵活的界面。相较于传统布局,它提供更高灵活性与性能。基本用法涉及XML定义约束,如视图与父布局对齐。此外,它支持百分比尺寸、偏移量控制等高级功能,并配有ConstraintSet和编辑器辅助设计。合理运用可显著提高布局效率及性能。
207 0
|
3月前
|
Android开发
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
49 0
|
4月前
|
XML Android开发 数据安全/隐私保护
使用RelativeLayout布局Android界面
使用RelativeLayout布局Android界面