Android 3.0 旋转操作栏
对于3.0操作栏,我可以定义纵向和横向两种操作栏样式吗? 当我从横向模式切换到纵向模式时,操作栏不会自行重置(例如在没有可用空间时隐藏图标)。 我正在使用带有兼容性库的 sdk 11。 谢谢。
For 3.0 action bar, can I define two action bar styles for portrait and landscape?
The action bar does not reset itself(such as hide the icons when there is no space available) when I switch from landscape to portrait mode.
I am using sdk 11 with compatibility library.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。轮换时,将重新创建 Activity。因此,在 create 方法中,您可以根据当前方向设置 view 和 ActionBar 属性。
Yes you can. On rotation, Activity is recreated. So in create method, you can set view and ActionBar properties based on current orientation.