Android:方向更改时 Textview 滚动问题
在我的应用程序中,我想显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在您的 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"