android 布局土地和屏幕旋转处理
我有纵向模式的布局(在文件夹布局中)和横向模式的布局(在文件夹布局土地中)。该屏幕位于其中一个选项卡下,因此我必须处理屏幕旋转(屏幕旋转后,不会发生默认屏幕重新启动)。
我想在屏幕旋转到横向模式时从“布局土地”更新视图,并在屏幕旋转到纵向模式时从“布局”更新视图。
我该怎么做?
I have layouts for portrait mode (in folder layout) and for landscape one (in the folder layout-land). This screen is located under one of the tabs, so I had to handle screen rotating (after screen has been rotated, no default screen restart occurs).
I would like to update view from 'layout-land' when screen rotates to landscape mode and from 'layout' when screen rotates to portrait one.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 setContentView(R.layout.name) 中使用 onConfigchange 方法,这种方式可以工作。
You can use onConfigchange method in that setContentView(R.layout.name) this way will work.