0

我的应用中有大约 200 多个国家/地区名称。我为每个国家/地区获得了 200 多个国旗图标。标志图标名称等于国家名称,例如:

国名:ENG,图标名eng.png

我想在我的应用程序中列出它们以选择国家。我不想手动构建布局并为每个 TextView 添加 200 多个图标...

我的问题是,我可以以某种方式动态添加吗?

像这样的东西:

private void setIcon(String iconName)
{
     countryIcon.setBackgroundResource(R.drawable. /* and i need the magic here*/ +iconName )
}

那么我可以通过某种方式使用参数动态引用 R.drawable 吗?

4

2 回答 2

1

试试这个:

private void setIcon(String iconName) {
    Resources res = getResources();
    int imageResource = res.getIdentifier("drawable/" + iconName, null, getPackageName());

    Drawable image = res.getDrawable(imageResource);
    countryIcon.setBackgroundResource(image);
}
于 2012-05-04T07:15:21.540 回答
0

如果你有图案,一点都不难。这是一个例子。我这样做是为了在 ListView 中加载标志图像,具体取决于每个行对象的标志 ID。一旦我有了language_id,我就会得到与我的图标名称相同的language_KEY(字符串):

   int ico_id, int visible=View.visible();
   String flag;
   Bitmap icona;

 flag= (MyWharehouse.getLangKey(language_id.get(position))).toLowerCase(); //get the image.png name
 ico_id = a.getResources().getIdentifier(flag, "drawable", a.getString(R.string.package_str));
 icona = BitmapFactory.decodeResource(a.getResources(), ico_id);

 ((ImageView)a.findViewById(R.id.im_lang_01)).setImageBitmap(icona);  //changing the image
于 2012-05-04T07:23:15.463 回答