Android百分比布局Percent支持库

虽然有很多的布局可以在 Android 应用程序开发的世界供我们使用,但我们总是只用这三种布局: 
LinearLayout, RelativeLayout and FrameLayout。 

不管怎么说在用 RelativeLayout 和 FrameLayout 的时候总有一些问题,因为你不能设置子视图的百分比程度。 
只有两种方法可能做到 
1. 布局在 LinearLayout 里并用它的 layout_weight 布局参数; 
2. 在 Java 代码中重写 onMeasure 方法来实现。 

举个例子,如果我想在 RelativeLayout 里放一个简单的红色矩形,它是在顶部,并且距离左边的 5% 的位置,宽度为屏幕的25%。我们的代码可以这样写: 

Xml代码   收藏代码
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.   android:layout_width="match_parent"  
  3.   android:layout_height="match_parent">  
  4.   <LinearLayout  
  5.     android:layout_width="match_parent"  
  6.     android:layout_height="wrap_content"  
  7.     android:orientation="horizontal"  
  8.     android:weightSum="20">  
  9.     <View  
  10.       android:layout_width="0dp"  
  11.       android:layout_height="match_parent"  
  12.       android:layout_weight="1"  
  13.       />  
  14.     <View  
  15.       android:layout_width="0dp"  
  16.       android:layout_height="100dp"  
  17.       android:layout_weight="5"  
  18.       android:background="#ff0000" />  
  19.   </LinearLayout>  
  20. </RelativeLayout>  

这是结果: 



你会注意到这样的代码应该是非常复杂的。与此同时,这些控件也用视图和 LinearLayout 填充着,我们可以把它们看成是一种浪费。 

这将不再是一个问题啦,因为在前几天 Android M 宣布了它的名字:棉花糖(Marshmallow),Android 团队推出了许多支持库去帮助开发者与碎片化的战斗!其中之一就是 百分比支持库(Percent Support Library) ,它具备的能力是用百分比去设置 RelativeLayout 和 FrameLayout 的尺寸! 

你好,百分比支持库 
这个库是非常容易使用的,因为它就如同 RelativeLayout 和 FrameLayout 一样我们都熟悉,只是有一些额外的功能。 

首先,因为百分比支持库是随着 Android Support Library 23 一起的,所请确保你已经在 SDK Manager 中的 Android Support Library 更新了最新的版本。然后在build.gradle文件中添加下面这样的依赖: 

compile 'com.android.support:percent:23.0.0' 
现在,在使用老的 RelativeLayout 和 FrameLayout 做替换,只需要简单的将他们各自切换到android.support.percent.PercentRelativeLayout和android.support.percent.PercentFrameLayout。这里有9个布局参数可以使用: 

layout_widthPercent: 用百分比来表示宽度,比如:app:layout_widthPercent="25%" 

layout_heightPercent: 用百分比来表示高度 

layout_marginPercent: 用百分比来表示 Margin 

其余的是用百分比来表示每个 margin 面 
layout_marginLeftPercent 
layout_marginRightPercent 
layout_marginTopPercent 
layout_marginBottomPercent 
layout_marginStartPercent 
layout_marginEndPercent 

用PercentRelativeLayout,上面的代码例子就能这样来写了: 
Xml代码   收藏代码
  1. <android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.   xmlns:app="http://schemas.android.com/apk/res-auto"  
  3.   android:layout_width="match_parent"  
  4.   android:layout_height="match_parent">  
  5.   <View  
  6.     app:layout_widthPercent="25%"  
  7.     android:layout_height="100dp"  
  8.     app:layout_marginLeftPercent="5%"  
  9.     android:background="#ff0000" />  
  10. </android.support.percent.PercentRelativeLayout>  

这是结果: 



你可以看到结果是完全是一致的,而且具有更短更清晰的代码,此外,该空间现在没有填充其他布局,这就让性能达到了更好的程度。 

实际上这本应该就是 Android 整体的一部分,但不幸的是,事实并非如此。把它填加到原生Android 的RelativeLayout/FrameLayout 已经太迟了,因为用户用的设备都是老的操作系统版本,不可能支持使用这个功能。所以这就是为什么 Android 团队决定把它作为一个支持库来发布,我支持这个主意。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值