Android开发:方向改变时如何保留文本?

发布于 2024-10-03 15:42:40 字数 173 浏览 6 评论 0原文

在我的应用程序中,我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2024-10-10 15:42:40

将所有视图内容存储在 onSaveInstanceState() 中,并在 onCreate() 中重新加载。如果您想搞笑并让所有这些值在系统重新启动后仍然保留,您可以使用 SharedPreferences,但保存实例状态可能正是您想要的。

Store all your view's contents in onSaveInstanceState() and reload it in onCreate(). If you want to be funny and have all those values persist even after a system reboot, you could use SharedPreferences, but saving the instance state is probably what you want here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文