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 是线性布局。
您应该使用#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);