家庭应用程序中的小部件和方向问题
我正在创建一个家庭应用程序,我终于用它来托管小部件了。唯一的问题是,当我改变手机的方向时,小部件就会消失,我必须重新添加它们。我知道当方向改变时会重新创建活动,但是我应该怎么做才能让小部件再次显示?
I am creating a home application and I finally got it to host widgets. The only problem is that when I change the orientation of the phone the widgets disappear and I have to add them all over again. I know that activities are recreated when the orientation changes but what should I do for the widgets to show up again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置 Activity 的背景
请参阅我的答案。只是不要在
onConfigurationChanged()
方法中编写任何内容。这是因为方向更改会重新启动您的活动。
Setting the background of an Activity
See my answer there. Just do not write anything in the
onConfigurationChanged()
method.This is caused because the orintation changes restarts your activity.