1

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

4

2 回答 2

1

将此添加到您的build.grade(Module: app)依赖项中

apply plugin:
   {
   .
   .
   .
   .
   }
dependencies {
    .
    .
    .
    .
    compile 'com.android.support:percent:25.1.1'

}
于 2017-02-09T12:20:00.563 回答
1

这里是依赖PercentRelativeLayout

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

于 2017-02-09T12:07:24.470 回答