横向模式更改布局上的图像
大家好,我的问题是下一个:我有一个 ImageView,在应用程序启动时加载图像(default_image),然后用户可以更改它并查看更多图片,但是当我更改 ImageView 中的屏幕方向时,将图像显示为在 OnCreate (default_image) 中开始加载而不是 current_image ,不知道为什么?
ps:我的layout-land文件夹中没有布局
hello guys my problem is the next: I have an ImageView that at launch of the application load an image (default_image) and then the user can change it and see more pictures, but when I change the screen orientation in my ImageView displays the image to begin loading in OnCreate (default_image) and not the current_image and do not know why?
ps: I do not have a layout in the layout-land folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改方向被视为配置更改。您需要处理 onConfigurationChanged 事件,以便保留用户在图像集合(或您正在使用的任何内容)中的位置。查看有关处理这些情况的开发人员指南。 http://developer.android.com/guide/topics/resources/runtime -changes.html
Changing the orientation is considered a configuration change. You'll need to handle the onConfigurationChanged event in order to persist the user's position in the image collection (or whatever you're using). Check out the developer guide on handling these situations. http://developer.android.com/guide/topics/resources/runtime-changes.html