当前位置:   article > 正文

Android线性布局_android 线性布局

android 线性布局

目录

一.Android中drawable或mipmap文件夹存放图片的区别

1.1 结论

1.2 Android官方对drawable和mipmap文件夹用途的描述

1.3 Android中mipmap的应用场景

1.4 Android mipmap中的图标icon 对应的尺寸大小

1.5 添加图片

1.5.1直接把需要的图片拖入

 1.5.2 右键Open in ->Explorer

二.详解HelloWorld

2.1Activity

2.2布局文件

2.3清单文件

三:布局基础

3.1布局的作用

3.2布局的种类

3.3 添加布局方式

四.线性布局

4.1 线性布局的使用

4.1.1 layout_weight作用

4.1.2 layout_gravity重力:重力摆放

 五.综合案例


一.Android中drawable或mipmap文件夹存放图片的区别

1.1 结论

   应用图标的图片资源存放在mipmap系列文件夹中,而其余图片存放在drawable系列文件夹中

1.2 Android官方对drawable和mipmap文件夹用途的描述

        drawable文件夹存储bitmap文件(png, jpeg, gif),9-patch文件和xml文件,这些文件用于描述包含多种状态(normal, pressed, focused)的可绘制形状或可绘制对象。

        mipmap文件夹用于存放APP的icon图标文件。Android系统会保留这个文件夹中所有的图片资源,而不受到应用安装的设备的屏幕分辨率的影响。这个行为允许启动程序为应用选择最好的分辨率图标显示在主屏幕上。

1.3 Android中mipmap的应用场景

        在绝大部分安卓设备的Launcher桌面中,打开或关闭一个APP会有APP打开或关闭的动画效果,例如打开一个APP时会先加载放大该APP的动画,接着便是APP启动界面的放大动画直至填满整个屏幕。
        那么在这个放大或缩小APP图标的动画中,使用drawable下的图片作为APP图标,那么整个放大或缩小的动画都只会使用这一张图片,例如一张低分辨率的图片的放大动画效果则会失真,而高分辨率的缩小动画效果会耗费CPU效率来缩放图片;如果使用mipmap下的图片,Android系统则会根据动画对图片的缩放程度,来自动选择最接近当前分辨率的图片来做缩放处理,这样就实现了Google官方文档中描述的更好视觉效果和更高效率的目的。

1.4 Android mipmap中的图标icon 对应的尺寸大小

mipmap-xxxhdpi 对应 192x192px

mipmap-xxhdpi 对应 144x144

mipmap-xhdpi 对应 96x96

mipmap-hdpi 对应 72x72

mipmap-mdpi 对应 48x48

1.5 添加图片

1.5.1直接把需要的图片拖入

 1.5.2 右键Open in ->Explorer


 

二.详解HelloWorld

2.1Activity

2.2布局文件

 

Ctrl+B转到定义

2.3清单文件

三:布局基础

3.1布局的作用

3.2布局的种类

            

帧布局:有层次的布局,可覆盖 

 

 

3.3 添加布局方式

四.线性布局

4.1 线性布局的使用

布局文件的创建只能英文小写,可下划线数学,数字不能开头

 

match_parent:匹配父容器也就是外层容器,如果没有父容器则匹配的是窗口

wrap_content:大小随着内容的增大而增大

4.1.1 layout_weight作用

<!--layout_weight权重两个作用 -->
<!--1.设置某些特殊效果的布局 2.按比例划分空间-->

作用1:长度靠后控制,由于第一个设置了layout_weight,其他的没有设置,其长度后控制,即其他先摆放好,剩余长度为第一个长度。这种情况给layout_weight赋任何值效果一样。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--vertical垂直的,horizontal水平的,默认水平-->
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="horizontal"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <!--layout_weight权重 -->
  8. <TextView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="帅,就是帅"
  12. android:background="#ff0000"
  13. android:layout_weight="1"/>
  14. <TextView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="帅,就是帅"
  18. android:background="#00ff00"/>
  19. <TextView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="帅,就是帅"
  23. android:background="#0000ff"/>
  24. </LinearLayout>

效果

 作用2:按比例划分区域,layout_width一般设为0dp,避免其他影响。将layout_weight非别设为3,2,1,根据值按比例划分

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--vertical垂直的,horizontal水平的,默认水平-->
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="horizontal"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. >
  8. <!--layout_weight权重 -->
  9. <TextView
  10. android:layout_width="0dp"
  11. android:layout_height="wrap_content"
  12. android:text="帅,就是帅"
  13. android:background="#ff0000"
  14. android:textSize="10sp"
  15. android:layout_weight="3"/>
  16. <TextView
  17. android:layout_width="0dp"
  18. android:layout_height="wrap_content"
  19. android:text="帅,就是帅"
  20. android:textSize="10sp"
  21. android:background="#00ff00"
  22. android:layout_weight="2"/>
  23. <TextView
  24. android:layout_width="0dp"
  25. android:layout_height="wrap_content"
  26. android:text="帅,就是帅"
  27. android:textSize="10sp"
  28. android:background="#0000ff"
  29. android:layout_weight="1"/>
  30. </LinearLayout>

效果:

 

4.1.2 layout_gravity重力:重力摆放

 五.综合案例

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <LinearLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="60dp"
  8. android:orientation="horizontal"
  9. android:background="#333333"
  10. android:paddingLeft="15dp">
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="《"
  15. android:textColor="#ffffff"
  16. android:textSize="26sp"
  17. android:layout_gravity="center_vertical"/>
  18. <TextView
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:text="黎旭"
  22. android:textColor="#ffffff"
  23. android:textSize="26sp"
  24. android:layout_gravity="center_vertical"
  25. android:layout_weight="1"/>
  26. <ImageView
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:src="@mipmap/menu_logout_icon"/>
  30. </LinearLayout>
  31. <LinearLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="match_parent"
  34. android:orientation="horizontal"
  35. android:layout_weight="1"></LinearLayout>
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="60dp"
  39. android:orientation="horizontal"
  40. android:background="#cccccc">
  41. <ImageView
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:src="@mipmap/chatting_setmode_voice_btn_normal"
  45. android:layout_gravity="center_vertical"/>
  46. <TextView
  47. android:layout_width="0dp"
  48. android:layout_height="wrap_content"
  49. android:layout_weight="1"/>
  50. <ImageView
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:src="@mipmap/sns_shoot_emotion_icon_normal"
  54. android:layout_gravity="center_vertical"/>
  55. <ImageView
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:src="@mipmap/type_select_btn_nor"
  59. android:layout_gravity="center_vertical"/>
  60. </LinearLayout>
  61. </LinearLayout>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/312040?site
推荐阅读
相关标签
  

闽ICP备14008679号