当我使用主题Theme.Holo.Light时,我的窗口背景在模拟器上显示为白色(与使用早期Android版本的Theme.Light相同)。然而在Galaxy Nexus上它显得浅灰色。我拍了一张截图,发现它实际上是一个非常轻微的渐变。
这是使用ADT16创建的全新项目。我所做的就是在清单中设置主题:
android:theme="@android:style/Theme.Holo.Light"
并且相反,将其放入活动中:
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This text background is white"
android:textAppearance="?android:attr/textAppearanceLarge"
android:background="#fff" />
Here's the screenshot from the emulator running API 15 (and is identical on API 14)
Here it is on a real Galaxy Nexus.
为何与众不同?我知道不要相信制造商不要在旧的Android版本上弄乱AOSP主题,但是(i)这是一个Nexus设备和(ii)Holo应该是强制性的,并且在所有设备上都没有修改(http:// android -developers.blogspot.co.nz/2012/01/holo-everywhere.html)。
(也许有人使用除Galaxy Nexus以外的ICS设备可以告诉我他们为Holo.Light获得了什么 - 也许这是一个模拟器错误。)
答案 0 :(得分:1)
Theme.Holo.Light确实有灰色背景。
Nexus的屏幕截图显示了正确的行为。
祝福, 添
答案 1 :(得分:0)
在你的主题中使用它
<item name="android:windowBackground">@color/your_color</item>