web-dev-qa-db-fra.com

Obtenez la couleur d'arrière-plan d'un bouton dans android

Comment obtenir la couleur d'arrière-plan d'un bouton. Dans le xml, je définis la couleur d'arrière-plan en utilisant ---- Android: background = XXXXX maintenant dans la classe d'activité, comment puis-je récupérer cette valeur qu'il a?

38
LostPuppy

Malheureusement, je ne sais pas comment récupérer la couleur réelle.

Il est facile de l'obtenir en tant que Drawable

Button button = (Button) findViewById(R.id.my_button);
Drawable buttonBackground = button.getBackground();

Si vous savez que c'est une couleur, vous pouvez essayer

ColorDrawable buttonColor = (ColorDrawable) button.getBackground();

Et si vous êtes sur Android 3.0+, vous pouvez obtenir l'ID de ressource de la couleur.

int colorId = buttonColor.getColor();

Et comparez cela à vos couleurs assignées, c.-à-d.

if (colorID == R.color.green) {
  log("color is green");
}
81
Matthew Rudy
private Bitmap mBitmap;
private Canvas mCanvas;
private Rect mBounds;

public void initIfNeeded() {
  if(mBitmap == null) {
    mBitmap = Bitmap.createBitmap(1,1, Bitmap.Config.ARGB_8888);
    mCanvas = new Canvas(mBitmap);
    mBounds = new Rect();
  }
}

public int getBackgroundColor(View view) {
  // The actual color, not the id.
  int color = Color.BLACK;

  if(view.getBackground() instanceof ColorDrawable) {
    if(Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
      initIfNeeded();

      // If the ColorDrawable makes use of its bounds in the draw method,
      // we may not be able to get the color we want. This is not the usual
      // case before Ice cream sandwich (4.0.1 r1).
      // Yet, we change the bounds temporarily, just to be sure that we are
      // successful.
      ColorDrawable colorDrawable = (ColorDrawable)view.getBackground();

      mBounds.set(colorDrawable.getBounds()); // Save the original bounds.
      colorDrawable.setBounds(0, 0, 1, 1); // Change the bounds.

      colorDrawable.draw(mCanvas);
      color = mBitmap.getPixel(0, 0);

      colorDrawable.setBounds(mBounds); // Restore the original bounds.
    }
    else {
      color = ((ColorDrawable)view.getBackground()).getColor();
    }
  }

  return color;
}
20
jpmcosta

Vous pouvez également essayer quelque chose comme définir la valeur de la couleur comme la balise comme

Android:tag="#ff0000"

Et accédez-y depuis le code

String colorCode = (String)btn.getTag();
14
blessenm

La façon la plus simple d'obtenir la couleur pour moi est:

int color = ((ColorDrawable)button.getBackground()).getColor();

Testé et fonctionnant sur Lollipop 5.1.1

5
Java Geek

Pour obtenir l'arrière-plan Drawable, vous utilisez

public Drawable getBackground();

tel que défini dans la classe de base View.

N'oubliez pas que le Button peut avoir un fond qui est une image, une couleur, un dégradé. Si vous utilisez Android: background = "# ffffff", la classe de l'arrière-plan sera

Android.graphics.drawable.ColorDrawable

De là, vous pouvez simplement appeler

public int getColor()
2
brianestey

Essaye ça:

list_view.getChildAt(position).setBackgroundColor(Color.YELLOW);        
ColorDrawable corItem = (ColorDrawable) list_view.getChildAt(position).getBackground();
if(corItem.getColor() == Color.YELLOW){
   Toast.makeText(NovoProcessoActivity.this,"Right Color!", Toast.LENGTH_SHORT).show();
   }else{
   Toast.makeText(NovoProcessoActivity.this,"Wrong Color!", Toast.LENGTH_SHORT).show();
}

ou

int color =( (ColorDrawable)  list_view.getChildAt(position).getBackground()).getColor();
0
Marcos Militão