“cara mengatur gambar secara dinamis di android” Kode Jawaban

cara mengatur nama yang dapat ditarik ke imageview secara terprogram

String uri = "@drawable/myresource";  // where myresource (without the extension) is the file

int imageResource = getResources().getIdentifier(uri, null, getPackageName());

imageview= (ImageView)findViewById(R.id.imageView);
Drawable res = getResources().getDrawable(imageResource);
imageView.setImageDrawable(res);
Stockholm

cara mengatur gambar secara dinamis di android

String fnm = "cat"; //  this is image file name
String PACKAGE_NAME = getApplicationContext().getPackageName();
int imgId = getResources().getIdentifier(PACKAGE_NAME+":drawable/"+fnm , null, null);
System.out.println("IMG ID :: "+imgId);
System.out.println("PACKAGE_NAME :: "+PACKAGE_NAME);
//    Bitmap bitmap = BitmapFactory.decodeResource(getResources(),imgId);
your_image_view.setImageBitmap(BitmapFactory.decodeResource(getResources(),imgId));
Inquisitive Iguana

Android Java Update Image secara dinamis

ImageView image = (ImageView) findViewById(R.id.test_image);
    image.setImageResource(R.drawable.xxx);
Tame Thrush

Jawaban yang mirip dengan “cara mengatur gambar secara dinamis di android”

Pertanyaan yang mirip dengan “cara mengatur gambar secara dinamis di android”

Lebih banyak jawaban terkait untuk “cara mengatur gambar secara dinamis di android” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya