当前位置:   article > 正文

Android屏幕适配之百分比布局

android 布局适配百分比

为什么使用百分比布局

由于Android系统的碎片化发展导致了市面上多种分辨率、多种屏幕密度共存,这对我们的屏幕适配增加了不少的难度,在布局方面我们都知道可以通过LinearLayout的layout_weight属性来进行适配,但是在某些情况下我们要向用这种方法进行适配就必须进行多层布局嵌套,而这则会导致布局文件复杂,增加渲染层次,致使性能下降。针对这种情况google为我们提供了一个百分比布局兼容库:Android Percent Support Library,解决了上述的问题,目前它支持RelativeLayout和FrameLayout的百分比布局,不过已经有大牛在GitHub上面开源了LinearLayout的百分比布局支持库。

如何使用百分比布局

1.添加依赖
  1. dependencies {
  2. ...
  3. implementation 'com.android.support:percent:27.0.2'
  4. }
2.属性讲解
在函数库里面我们主要用到两个类:
  • PercentRelativeLayout
  • PercentFrameLayout
它们主要有以下属性
  • app:layout_heightPercent:用百分比表示高度
  • app:layout_widthPercent:用百分比表示宽度
  • app:layout_marginPercent:用百分比表示View之间的间隔
  • app:layout_marginLeftPercent:用百分比表示左边间隔
  • app:layout_marginRight:用百分比表示右边间隔
  • app:layout_marginTopPercent:用百分比表示顶部间隔
  • app:layout_marginBottomPercent:用百分比表示底部间隔
  • app:layout_marginStartPercent:用百分比表示距离第一个View之间的距离
  • app:layout_marginEndPercent:用百分比表示距离最后一个View之间的距离
  • app:layout_aspectRatio:用百分比表示View的宽高比
3.实例演示(以PercentRelativeLayout为例)
这里由于不设置layout_width和layout_height的话Android Studio会报错所以我们把它设置成0dp。
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <TextView
  9. android:layout_width="0dp"
  10. android:layout_height="0dp"
  11. android:id="@+id/one"
  12. android:background="#f0f000"
  13. app:layout_heightPercent="30%"
  14. app:layout_widthPercent="70%"
  15. android:text="Hello World!"
  16. />
  17. <TextView
  18. android:layout_width="0dp"
  19. android:layout_toRightOf="@id/one"
  20. android:layout_height="0dp"
  21. app:layout_heightPercent="30%"
  22. app:layout_widthPercent="30%"
  23. android:background="#ff0000"
  24. android:text="Hello World!"
  25. />
  26. <TextView
  27. android:layout_width="0dp"
  28. android:layout_below="@id/one"
  29. android:layout_height="0dp"
  30. app:layout_heightPercent="70%"
  31. app:layout_widthPercent="100%"
  32. android:background="#ff00ff"
  33. android:text="Hello World!"
  34. />
  35. </android.support.percent.PercentRelativeLayout>
效果图
img_c334c7639acce00c0bdf042b2c523b5a.png
layout_aspectRatio属性演示
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <TextView
  9. android:layout_width="100dp"
  10. android:layout_height="0dp"
  11. app:layout_aspectRatio="50%"
  12. android:background="#ff00ff"
  13. android:text="Hello World!"
  14. />
  15. <TextView
  16. android:layout_width="100dp"
  17. android:layout_height="0dp"
  18. android:layout_alignParentRight="true"
  19. app:layout_aspectRatio="200%"
  20. android:background="#0f00ff"
  21. android:text="Hello World!"
  22. />
  23. </android.support.percent.PercentRelativeLayout>
效果图
img_144ce2014ac0e78a2a8c47ab4186b960.png

个人技术博客:https://myml666.github.io

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

闽ICP备14008679号