Android:方向更改时 Textview 滚动问题

发布于 2024-11-16 03:58:50 字数 100 浏览 0 评论 0原文

在我的应用程序中,我想显示 Facebook 更新。我使用文本视图对选框限制 2 执行相同的操作。问题是当方向更改时,文本从头开始滚动。我该如何解决这个问题?

提前致谢。

In my app i want to show facebook updates. I used a textview to do the same with marquee limit 2. The problem is when the orientation changes the text starts scroll from the beginning. How can i fix this issue?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

森林散布 2024-11-23 03:58:50

只需在您的 android 清单(在活动中)中添加以下代码,以便方向更改不会影响您的活动。
android:configChanges="方向|键盘隐藏"
android:screenOrientation="未指定"

Just add the following code in ur android manifest(in the activity) so that the orientation changes wont affect ur activity.
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="unspecified"

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