Получить цвет фона кнопки в Android - PullRequest
38 голосов
/ 11 ноября 2011

Как получить цвет фона кнопки. В xml я установил цвет фона, используя ---- android: background = XXXXX теперь в классе деятельности, как я могу получить это значение, которое оно имеет?

Ответы [ 6 ]

81 голосов
/ 11 ноября 2011

К сожалению, я не знаю, как получить реальный цвет.

Легко получить это как Drawable

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

Если вы знаете, что это цвет, то вы можете попробовать

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

А если вы работаете на Android 3.0+, вы можете получить идентификатор ресурса цвета.

int colorId = buttonColor.getColor();

И сравните это с вашими назначенными цветами, то есть.

if (colorID == R.color.green) {
  log("color is green");
}
19 голосов
/ 06 декабря 2012
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;
}
14 голосов
/ 11 ноября 2011

Вы также можете попробовать что-то вроде установить значение цвета в виде тега типа

android:tag="#ff0000"

и получить к нему доступ с помощью кода

String colorCode = (String)btn.getTag();
5 голосов
/ 24 декабря 2015

Самый простой способ получить цвет для меня:

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

Протестировано и работает на Lollipop 5.1.1

2 голосов
/ 11 ноября 2011

Чтобы получить фон Drawable, вы используете

public Drawable getBackground();

как определено в базовом View классе.

Не забывайте, что Button может иметь фон, который является изображением, цветом, градиентом. Если вы используете android: background = "# ffffff", класс фона будет

android.graphics.drawable.ColorDrawable

Оттуда вы можете просто позвонить

public int getColor()
0 голосов
/ 01 февраля 2017

Попробуйте это:

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();
}

или

int color =( (ColorDrawable)  list_view.getChildAt(position).getBackground()).getColor();
...