我的最终目标是:我有两个微调器spinner1, spinner2
,每个都有自己的值。一张图片,名为image
. 有字符串,名为start, end, file
. 一键,button
。
我的代码如下所示:
@Override
public void onClick(View v) {
start = sStart.getSelectedItem().toString();
end = sEnd.getSelectedItem().toString();
if (start.equals(end)) {
Toast.makeText(this, "You cannot end where you start.",
Toast.LENGTH_SHORT).show();
works = false;
}
if (works) {
start = start.replace(" ","_");
end = end.replace(" ","_");
file = "@drawable/" + start + end + ".gif";
}
}
文件名与内容start + end + ".gif"
完全匹配,所以我想将图像设置为与字符串内容对应的文件名。