如何在API 25中使用PercentRelativeLayout

时间:2017-02-09 11:52:19

标签: android android-percentrelativelayout

我想使用 PercentRelativeLayout ,但我有 compileSdkVersion 25 。 我应该在build.grade(Module:app)中添加哪个依赖项?

2 个答案:

答案 0 :(得分:1)

以下是PercentRelativeLayout

的依赖关系

编译'com.android.support:percent:25.0.0'

答案 1 :(得分:1)

build.grade(Module: app)依赖项

中添加此内容
apply plugin:
   {
   .
   .
   .
   .
   }
dependencies {
    .
    .
    .
    .
    compile 'com.android.support:percent:25.1.1'

}