码迷,mamicode.com
首页 > 其他好文 > 详细

在代码中引用资源

时间:2016-06-01 10:21:50      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

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);

 

在代码中引用资源

标签:

原文地址:http://www.cnblogs.com/zqxLonely/p/5548662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!