“Como definir a imagem dinamicamente no Android” Respostas de código

Como definir o nome desenhado para o ImageView programaticamente

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

Como definir a imagem dinamicamente no 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

Imagem de atualização do Android Java dinamicamente

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

Respostas semelhantes a “Como definir a imagem dinamicamente no Android”

Perguntas semelhantes a “Como definir a imagem dinamicamente no Android”

Mais respostas relacionadas para “Como definir a imagem dinamicamente no Android” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código