web-dev-qa-db-ja.com

レイアウトの背景色を取得する

コードからレイアウトの背景色を見つけたい。それを見つける方法はありますか? linearLayout.getBackgroundColor()のようなものですか?

52
Srujan Simha

これは、背景が単色の場合にのみAPI 11+で実現できます。

int color = Color.TRANSPARENT;
Drawable background = view.getBackground();
if (background instanceof ColorDrawable)
    color = ((ColorDrawable) background).getColor();
111
Rich

レイアウトの背景色を取得するには:

LinearLayout lay = (LinearLayout) findViewById(R.id.lay1);
ColorDrawable viewColor = (ColorDrawable) lay.getBackground();
int colorId = viewColor.getColor();

RelativeLayoutの場合、そのIDを見つけて、LinearLayoutの代わりにそこのオブジェクトを使用します。

12
arpit

ColorDrawable.getColor()は11を超えるAPIレベルでのみ動作するため、このコードを使用してAPIレベル1からサポートできます。APIレベル11未満のリフレクションを使用します。

public static int getBackgroundColor(View view) {
        Drawable drawable = view.getBackground();
        if (drawable instanceof ColorDrawable) {
            ColorDrawable colorDrawable = (ColorDrawable) drawable;
            if (Build.VERSION.SDK_INT >= 11) {
                return colorDrawable.getColor();
            }
            try {
                Field field = colorDrawable.getClass().getDeclaredField("mState");
                field.setAccessible(true);
                Object object = field.get(colorDrawable);
                field = object.getClass().getDeclaredField("mUseColor");
                field.setAccessible(true);
                return field.getInt(object);
            } catch (NoSuchFieldException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            }
        }
        return 0;
    }
10
Akhil Dad

短くて簡単な方法:

int color = ((ColorDrawable)view.getBackground()).getColor();
6
Aashish