Android开发:方向改变时如何保留文本?
在我的应用程序中,我有一个 TextView,我在执行某个操作后使用 setText。 但是当方向改变时,TextView 的文本会变回正常。
我的应用程序的文件浏览器也有类似的问题,由于某种原因,当方向改变时它会返回到 /sdcard/ :/
我可以做些什么来防止丢失 TextView 的文本吗?
In my app I have a TextView that I use setText on after a certain action.
But when the orientation changes the TextView's text is changed back to normal.
I have a similar problem with my app's file browser, for some reason it goes back to /sdcard/ when the orientation changes :/
Is there anything I can do to prevent loosing the TextView's text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将所有视图内容存储在
onSaveInstanceState()
中,并在onCreate()
中重新加载。如果您想搞笑并让所有这些值在系统重新启动后仍然保留,您可以使用 SharedPreferences,但保存实例状态可能正是您想要的。Store all your view's contents in
onSaveInstanceState()
and reload it inonCreate()
. If you want to be funny and have all those values persist even after a system reboot, you could useSharedPreferences
, but saving the instance state is probably what you want here.