回答:
使用するルートレイアウトのハンドルを取得し、その上に背景色を設定します。ルートレイアウトは、setContentViewで使用したものです。
setContentView(R.layout.main);
// Now get a handle to any View contained
// within the main layout you are using
View someView = findViewById(R.id.randomViewInMainLayout);
// Find the root view
View root = someView.getRootView();
// Set the color
root.setBackgroundColor(getResources().getColor(android.R.color.red));
root.setBackgroundColor(getResources().getColor(android.R.color.red));
setContentView()
呼び出し後、アクティビティにこの1行を追加します
getWindow().getDecorView().setBackgroundColor(Color.WHITE);
テーマ別カラーリングが好き
<style name="CustomTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@color/custom_theme_color</item>
<item name="android:colorBackground">@color/custom_theme_color</item>
</style>
android:windowBackground
と、最初に少しの間表示され、次にレイアウトの背景色が引き継がれることです。したがって、2つの異なる色を使用すると、画面上でちらつきます。
windowBackground
ウィンドウの背景のみにcolorBackground
影響しますが、すべてのビューにも影響します。stackoverflow.com/questions/26266221/...
?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:id="@+id/myScreen"
</LinearLayout>
つまり、「android:background」は、変更するXMLのタグです。
バックグラウンド値を動的に更新する必要がある場合は、以下を参照してください。
あなたのonCreate()
方法では:
getWindow().getDecorView().setBackgroundColor(getResources().getColor(R.color.main_activity_background_color));
また、値フォルダーにという新しいXMLファイルを追加して、color.xml
そこに新しいカラープロパティを割り当てる必要があります。
color.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="main_activity_background_color">#000000</color>
</resources>
color.xml
任意の名前を付けることができますが、コードではとして参照することに注意してくださいR.color.yourId
。
編集
そのためgetResources().getColor()
廃止されました、使用してgetWindow().getDecorView().setBackgroundColor(ContextCompat.getColor(MainActivity.this, R.color.main_activity_background_color));
代わりに。
これを使用して、事前定義されたAndroidカラーを呼び出すことができます。
element.setBackgroundColor(android.R.color.red);
独自のカスタムカラーのいずれかを使用する場合は、カスタムカラーをstrings.xmlに追加し、以下を使用して呼び出すことができます。
element.setBackgroundColor(R.color.mycolour);
ただし、layout.xmlで色を設定する場合は、以下を変更して、それを受け入れる任意の要素に追加できます。
android:background="#FFFFFF"
View randview = new View(getBaseContext());
randview = (View)findViewById(R.id.container);
randview.setBackgroundColor(Color.BLUE);
私のために働いた。ありがとうございました。
Button btn;
View root;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button)findViewById(R.id.button);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
root =findViewById(R.id.activity_main).getRootView();
root.setBackgroundColor(Color.parseColor("#FFFFFF"));
}
});
}