Context访问资源用的。
TextView的初始化:
textView = new TextView(MainActivity.this);或者textView = new TextView(R.string.hello_world);直接通过资源id获取资源字符串初始化。
getResources().getText(R.string.hello_world)可以获取到字符串资源,还可以使用getResources()来获取其他的资源,比如图标资源;
ImageView iv = new ImageView(this);
iv.setImageResource(R.mipmap.ic_launcher);
网友评论