在代码中引用资源
Posted zqxLonely
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在代码中引用资源相关的知识,希望对你有一定的参考价值。
Resources resources=getBaseContext().getResources(); int color=resources.getColor(R.color.colorAccent); String string=resources.getString(R.string.helloWorld); TextView textView= (TextView) findViewById(R.id.textView); textView.setBackgroundColor(color); textView.setText(string);
以上是关于在代码中引用资源的主要内容,如果未能解决你的问题,请参考以下文章