“Android Studio SetbackgroundColor Deichbar” Code-Antworten

Ändern Sie programmgesteuertes Android -Zeichnungsfarbe


//resource
Drawable unwrappedDrawable = AppCompatResources.getDrawable(context, R.drawable.my_drawable); 
Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(wrappedDrawable, Color.RED);    

//activity
Drawable unwrappedDrawable = tvContinue.getBackground();
Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(wrappedDrawable, (Color.parseColor(getPreferences().getString(Constant.SECOND_COLOR, Constant.SECONDARY_COLOR))));

//adapter
Drawable unwrappedDrawable = holder.tvOff.getBackground();
 Drawable wrappedDrawable = DrawableCompat.wrap(unwrappedDrawable);
 DrawableCompat.setTint(wrappedDrawable, (Color.parseColor(((BaseActivity) activity).getPreferences().getString(Constant.SECOND_COLOR, Constant.SECONDARY_COLOR))));


//

KushalCodes

Android Studio SetbackgroundColor Deichbar

result.setBackgroundResource(R.drawable.your_drawable);
adreaskar

Wie ändert sich der zeichnbare Hintergrund -Kolot in Android

sdgfdjjk
KushalCodes

Ähnliche Antworten wie “Android Studio SetbackgroundColor Deichbar”

Fragen ähnlich wie “Android Studio SetbackgroundColor Deichbar”

Weitere verwandte Antworten zu “Android Studio SetbackgroundColor Deichbar” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen