无法将Android库资源设为私有?

时间:2018-11-22 11:57:35

标签: android android-library

在值中创建 public.xml 并在其中添加公共资源

#include <stdio.h>

int main(){

    for(int i = 2; i >= 0; i--){
        for(int j = 1; j <= 3; j++)
            printf("%d ", 3 * i + j);
        printf("\n");
    }
  return 0;
}

但是仍然可以从Main项目中的库模块访问所有资源。

尝试了此Chris Banes's instruction 还有stackoverflow post

使用 Android Studio 3.1.4 <resources> <public type="drawable" name="image_public"/> <public type="string" name="external_module_string_res_public"/> <public type="layout" name="activity_main_public"/> </resources>

0 个答案:

没有答案