<!-- Variation on the Light theme that turns off the title --><style name="Theme.IOSched" parent="android:style/Theme.Light"> <item name="android:windowNoTitle">true</item> <item name="android:windowContentOverlay">@null</item></style>
该
android:windowContentOverlay是你的影子,并将其设置为
@null你的主题将消除它。您可以在Google I | O
2010会议应用程序中看到这一点,该应用程序与新的Twitter应用程序使用许多相同的UI约定。但是,目前Twitter应用程序尚未开源,这就是为什么我将您指向I
|
O应用程序。上面的代码片段来自该应用程序的
styles.xml资源。



