如何访问Android库的资源?

时间:2016-02-02 18:47:41

标签: android android-resources android-library

我正在尝试访问包含一些字符串和drawable的库。在我的主项目中,我将库添加为模块。问题是,当我想在布局中引用字符串或颜色资源时,我不能。 根据API语法指南,我使用 @ [package.of.the.library]:type / resource_name ,但这不起作用。

我添加了一个用于测试的布局示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:mylibrary="http://schemas.android.com/apk/com.mylibrary.resources"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="@mylibrary:string/testing_text" />
</LinearLayout>

我尝试使用xmlns:mylibrary="http://schemas.android.com/apk/res-auto"代替xmlns:mylibrary="http://schemas.android.com/apk/com.mylibrary.resources",但它不起作用。

2 个答案:

答案 0 :(得分:2)

首先将模块添加为主项目build.gradle文件

的依赖项
compile project(":module_name")

其中 module_name 是模块项目的名称

然后你可以像普通的字符串和颜色一样访问字符串或颜色

@string/testing_text

答案 1 :(得分:2)

您需要将compile project(":mylibrary")添加到您的app build.gradle文件依赖项。

dependencies {
    compile project(":mylibrary")
    ...rest of dependencies for project
}