如何禁用横向视图的选项菜单?
我有一个选项菜单,但不希望它在屏幕水平翻转时出现。我有以下方法来确定景观,但需要知道如何禁用选项菜单。
private boolean isLandscape() {
if (Configuration.ORIENTATION_LANDSCAPE == getResources().getConfiguration().orientation) {
return true;
} else {
return false;
}
}
I have an options menu, but don't want it to appear when the screen is flipped horizontal. I have the following method to determine lanscape, but need to know how to disable the options menu.
private boolean isLandscape() {
if (Configuration.ORIENTATION_LANDSCAPE == getResources().getConfiguration().orientation) {
return true;
} else {
return false;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有关更多信息,请参阅文档信息。
See the documentation for more info.