Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
活動テーマを光に設定しました。
android:theme="@android:style/Theme.Light.NoTitleBar"
そして、レイアウトの背景を 0x000000 に設定しました。 グレー表示になります。 黒くする方法は?
以下の行を color.xml に設定します。 #000000 以下のように設定します。
ll.setBackgroundColor(R.color.black);
ll は LinearLayout です。
#ff000000の代わりに使用する必要があり#000000ます。これを試して:
#ff000000
#000000
//Try one of these lines: ll.setBackgroundColor(Color.parseColor("ff000000")); ll.setBackgroundColor(Color.BLACK); //Or change your color.xml value to #ff000000 and use ll.setBackgroundColor(R.color.black);