“Définir DrawableLeft programmatiquement Android” Réponses codées

Définir DrawableLeft programmatiquement Android

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

Définir DrawableLeft programmatiquement Android

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

Définir DrawableLeft programmatiquement Android

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

Réponses similaires à “Définir DrawableLeft programmatiquement Android”

Questions similaires à “Définir DrawableLeft programmatiquement Android”

Plus de réponses similaires à “Définir DrawableLeft programmatiquement Android” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code