コードからレイアウトの背景色を見つけたい。それを見つける方法はありますか? linearLayout.getBackgroundColor()
のようなものですか?
これは、背景が単色の場合にのみAPI 11+で実現できます。
int color = Color.TRANSPARENT;
Drawable background = view.getBackground();
if (background instanceof ColorDrawable)
color = ((ColorDrawable) background).getColor();
レイアウトの背景色を取得するには:
LinearLayout lay = (LinearLayout) findViewById(R.id.lay1);
ColorDrawable viewColor = (ColorDrawable) lay.getBackground();
int colorId = viewColor.getColor();
RelativeLayoutの場合、そのIDを見つけて、LinearLayoutの代わりにそこのオブジェクトを使用します。
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;
}
短くて簡単な方法:
int color = ((ColorDrawable)view.getBackground()).getColor();