当前位置:  开发笔记 > Android > 正文

通过flavor/debug-build更改字符串资源

如何解决《通过flavor/debug-build更改字符串资源》经验,为你挑选了1个好方法。

假设我们有strings_test.xml,它存储用于测试的字符串值,应该在调试版本中显示.当apk构建为发布版本时,所有值都应该更改为空字符串,例如@string/empty.

是否有可能实现这一目标?

一如既往,先谢谢.



1> Madhukar Heb..:

是的,您可以在buildTypes下的app gradle中执行此操作.

 buildTypes {
        mybuild {
                 resValue "string", "test_some_card_text", '"test"'
                 resValue "string", "other_text", '"other"'
                }
         debug {
                 resValue "string", "test_some_card_text", '"test"'
                 resValue "string", "other_text", '"other"'
              }
          }

然后像这样访问它.

getApplicationContext().getResources().getString(R.string.test_some_card_text);
getApplicationContext().getResources().getString(R.string.other_text);

对于构建,您需要选择它build variants并且必须构建它.

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有