标签:cal ppc http layout span 时间 constrain pat ref
首先是依赖的添加,由于我使用的版本相比参考书中的高,Android studio中已经不支持在compile,
所以我在模块级build.gradle添加如下的依赖:
implementation ‘androidx.percentlayout:percentlayout:1.0.0‘
|
dependencies { |
后面就是对layout中的 *.xml 文件进行修改
这里的话百分比布局中分 PercentRelativeLayout 和 PercentFrameLayout 两种
我采用的是PercentRelativeLayout,代码如下
<androidx.percentlayout.widget.PercentRelativeLayout </androidx.percentlayout.widget.PercentRelativeLayout>
|
这里我参照了一位博友的博客
http://blog.csdn.net/lmj623565791/article/details/46695347;
想了解其中的源码分析可以参考这个博客。
标签:cal ppc http layout span 时间 constrain pat ref
原文地址:https://www.cnblogs.com/shi-win-snoopy/p/12128267.html