为什么在 AndroidManifest.xml 中定义的主题与从 styles.xml 中获取的主题之间存在差异?
1)AndroidManifest.xml:
<application ... android:theme="@android:style/Theme.Black">
2) AndroidManifest.xml
<application ... android:theme="@style/AppTheme">
样式.xml
<resources>
<style name="AppTheme" parent="@android:style/Theme.Black" />
</resources>
第一种设置提供黑色主题,没有操作栏。第二个有深色操作栏和浅色菜单。
编辑:选项 1) 和 2) - 注意 Menu 和 ActionBar
编辑2:
为什么第二个选项实际上不使用 AppTheme (Theme.Black) ?(在 SGS3 上测试)