1

我的最终目标是:我有两个微调器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"完全匹配,所以我想将图像设置为与字符串内容对应的文件名。

4

1 回答 1

2

我做了什么(或多或少,我面前没有我的代码),我把我的图像文件放在资产中,然后我创建了我的方法:

InputStream stream = context.getAssets().open(filename);
Bitmap bmp = BitmapFactory.decodeStream(new BufferedInputStream(stream)); 

这从资产中读取文件并将其转换为位图

你也可以使用 context.getResources() 但我不记得下一步该做什么

于 2012-09-28T15:10:07.853 回答