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.
我目前正在使用标准Theme.Light.NoTitleBar并希望保留它,但要使用 actionBar 我必须Theme.Sherlock用作父级。有没有解决的办法?
Theme.Light.NoTitleBar
Theme.Sherlock
如果没有,我如何Theme.Sherlock作为父母使用并保留我以前的东西?
如果您使用 Theme.Light.NoTitleBar,则不会显示 ActionBar。ActionBar 只不过是一种 TitleBar。
如果您已经有一些具有某些样式的主题并想使用操作栏,请尝试以下操作
对于黑暗主题
<style name="YourTheme" parent="Theme.Sherlock"></style>
对于轻主题
<style name="YourTheme" parent="Theme.Sherlock.Light"></style>