0

我有几个drawable:

R.drawable.pres01
R.drawable.pres02
R.drawable.pres03

我想用来SharedPreference显示正确的drawable:

private SharedPreferences prefs;
private SharedPreferences.Editor editor;
String someId;
ImageView ivPresident;
int inAdd;

prefs = this.getSharedPreferences("pNum", Context.MODE_PRIVATE);

someId = prefs.getString("presNum", "");
inAdd = Integer.parseInt(someId);

ivPresident = (ImageView) findViewById(R.id.imgViewPresident);

我将字符串转换为整数,现在如何ivPresident根据保存的字符串将图像源设置为数字。

例如:

如果someId01可绘制ivPresidentR.drawable.pres01

如果someId02可绘制ivPresidentR.drawable.pres02

如果someId03可绘制ivPresidentR.drawable.pres03

我尝试了以下但没有奏效:

ivPresident.setBackground(R.drawable.pres + inAdd);

如何修复代码以实现它?

4

1 回答 1

1

你想要的是:

Resources.getIdentifier(String name...)

这里

以您现在尝试的方式构建字符串。

编辑:

String someId = prefs.getString("presNum", "");
int id = getResources().getIdentifier("pres0" + someId, "drawable", getPackageName())
ivPresident.setBackgroundResource(id);
于 2013-09-16T17:52:16.030 回答