1. ホーム
  2. java

[解決済み] アクティビティーの背景色をプログラムで白に設定するには?

2022-05-30 12:55:49

質問

アクティビティーの背景色をプログラムで白に設定するにはどうしたらよいでしょうか。

どのように解決するのですか?

使用されているルートレイアウトへのハンドルを取得し、その上で背景色を設定します。ルートレイアウトは、あなたが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));