“Defina o drawableleft programaticamente android” Respostas de código

Defina o drawableleft programaticamente android

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);
Unusual Unicorn

Defina o drawableleft programaticamente android

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);
Unusual Unicorn

Defina o drawableleft programaticamente android

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);
Unusual Unicorn

Respostas semelhantes a “Defina o drawableleft programaticamente android”

Perguntas semelhantes a “Defina o drawableleft programaticamente android”

Mais respostas relacionadas para “Defina o drawableleft programaticamente android” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código