Android 通过字符串来获取R下面资源的ID 值 文字资源

资源的ID 值 方法一:

try{  Field field=R.drawable.class.getField("icon");  int i= field.getInt(new R.drawable());  Log.d("icon",i+"");  
}catch(Exception e){  Log.e("icon",e.toString());  
}  

 

资源的ID 值 方法二:

Resources res=getResources();  
int i=res.getIdentifier("icon","drawable",getPackageName());  Log.i("res",Integer.toString(i));  

 

文字资源:

String str = getString(R.string.btnSetDate).toString();


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部