我需要知道如何检查 R.drawable 中是否存在图像,它必须是动态的,所以我必须使用一个字符串来给我图像的名称。我已经尝试使用 '!=null' 或存在但它没有工作....请帮助!!!!!!!!!
titulo=bundle.getString("titulo");
textView = (TextView) findViewById( R.id.textView1);
textView.setText(titulo);
foto="f"+bundle.getString("numero")+"a";
System.out.println(foto);
flipper =(ViewFlipper) findViewById(R.id.vfFlipper);
这给了我需要的图像名称...
image = new ImageView(this);
image= new ImageView(this);
image.setImageResource(R.drawable.f00a1);
image.setScaleType(ScaleType.FIT_CENTER);
flipper.addView(image);
有了这个我可以使用图像,但我需要使用变量“foto”所以它可以是动态的谢谢!