为什么我们在android中使用这个getWindow().close All Panels()?
在这里我想知道这个代码
我正在android中实现一个新的自定义主屏幕 所以我使用了这段代码。所以我想知道为什么我们在这里使用 getWindow().closeAllPanels();
这个东西。关闭android的默认主屏幕?
protected void onNewIntent(Intent intent) {
// TODO Auto-generated method stub
super.onNewIntent(intent);
// Close the menu
if (Intent.ACTION_MAIN.equals(intent.getAction())) {
getWindow().closeAllPanels();
}
}
here i want to know about this code
i am implementing a new customize home screen in android
so i used this code. so i want to know why we used here getWindow().closeAllPanels();
this thing. close default home screen of android?
protected void onNewIntent(Intent intent) {
// TODO Auto-generated method stub
super.onNewIntent(intent);
// Close the menu
if (Intent.ACTION_MAIN.equals(intent.getAction())) {
getWindow().closeAllPanels();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注释解释了原因:) 如果您已经在主屏幕上打开菜单并且用户按下菜单键,则此代码将关闭菜单。按 home 键用于重置为已知状态(启动器的中间屏幕,没有打开的菜单。)
The comment explains why :) If you are already on the home screen with the menu open and the user presses the menu key, this code closes the menu. Pressing home is used to reset to a known state (launcher's middle screen, no open menu.)