0
imageView1.setBackgroundResource(R.raw.background);
爲:
String imageSel= "background"
imageView1.setBackgroundResource(R.raw.imageSel);
我如何使用這個使用imageSel
變量?請讓我知道
imageView1.setBackgroundResource(R.raw.background);
爲:
String imageSel= "background"
imageView1.setBackgroundResource(R.raw.imageSel);
我如何使用這個使用imageSel
變量?請讓我知道
我該如何使用這個imageSel變量?
使用getIdentifier
使用資源名稱來獲得資源ID:
int rawId = getResources().getIdentifier(background, "raw", getPackageName());
imageView1.setBackgroundResource(rawId);
感謝亞爾。但是我正在解決一些問題。不知何故,它不在我的代碼中工作。在這裏, 原始文件夾是我在我的照片名稱中保存了我的照片和背景的文件夾。 –
@SiamAaron:我有一個問題,爲什麼你在'raw'文件夾中添加了圖像,因爲對於'drawable'圖像,'drawable-mdpi',..文件夾是可用的? –
起初我通過觀看教程來創建應用程序。這就是爲什麼它在原始文件夾 –