Android:percent 布局

Android 新引入的布局,百分比布局,Percent 布局

主要分为两种:PercentFrameLayout he PercentRelativeLayout 布局

通过 support 库引入,

在 module 的 gradle 中加入 compile:com.android.support.percent:24.2.1

主要新加入的属性:

app:layout_widthPercent

app:layout_heightPercent

不需要指定宽和高了,只需要指定在父布局的百分比,配合 layout_gravity 可以达到希望的布局。

原文地址:https://www.cnblogs.com/liyiran/p/6219076.html