使用 Android 支持库

Using Android Support Library

我正在尝试使用支持库。

我已将此依赖项添加到 gradle 文件

compile 'com.android.support:appcompat-v7:23.1.1'

而且我也在SDK管理器里下载了

但是当我尝试使用这个控件时 PercentRelativeLayout 它不起作用。布局 xml 文件似乎无法识别它。 android.support.percent.PercentRelativeLayout

有什么解决办法吗?

在您的 gradle 文件中使用此依赖项

compile 'com.android.support:percent:23.0.0'

PercentRelativeLayout 不属于支持库。

百分比支持库也有很好的示例,检查 here

您需要添加对 build.gradle 的依赖。例如

com.android.support:percent:23.1.0

appcompat的依赖不够。你可以阅读更多here