web-dev-qa-db-ja.com

androidでボタンの背景色を取得する

ボタンの背景色を取得するにはどうすればよいですか。 xmlでは、アクティビティクラスで---- Android:background = XXXXXを使用して背景色を設定していますが、この値を取得するにはどうすればよいですか?

38
LostPuppy

残念ながら、実際の色を取得する方法がわかりません。

これをDrawableとして取得するのは簡単です

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

これが色であることがわかっている場合は、試すことができます

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

また、Android 3.0+を使用している場合は、色のリソースIDを取得できます。

int colorId = buttonColor.getColor();

そして、これを割り当てられた色と比較します。

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

次のようなタグとして色の値を設定することもできます

Android:tag="#ff0000"

そして、コードからアクセスします

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

私の色を取得する最も簡単な方法は次のとおりです。

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

Lollipop 5.1.1でテストおよび作業中

5
Java Geek

背景Drawableを取得するには、使用します

public Drawable getBackground();

ベースViewクラスで定義されているとおり。

Buttonは、画像、色、グラデーションの背景を持つことができることを忘れないでください。 Android:background = "#ffffff"を使用する場合、背景のクラスは

Android.graphics.drawable.ColorDrawable

そこから簡単に電話をかけることができます

public int getColor()
2
brianestey

これを試して:

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();
0
Marcos Militão