Android 方向问题,无法滚动

发布于 2024-09-15 07:41:33 字数 236 浏览 4 评论 0原文

我正在使用 Eclipse 并使用 Android 1.5 开发了一个具有 3 个选项卡的应用程序。该程序运行得很好。 第一个问题——每当应用程序运行时,它都会改变方向,但不显示滚动条,从而允许向下(或向上)滚动。这应该发生吗?又是如何修正的呢?

第二个问题--如果您在选项卡2上,然后打开或关闭键盘(T-Mobile G1),选项卡2会切换到选项卡1。无论您是tab1还是tab2,打开/关闭键盘都会将其切换回tab1。有谁知道修复是什么?

I am using Eclipse and developed an app that has 3 tabs using Android 1.5. The program works just fine.
1st problem--whenever the app is run, it change orientations, but does not show the scroll bars, thus allowing to scroll down(or up). Is this suppose to be happening? And how is it corrected?

2nd problem--if you are on say tab2, then open or close the key board (T-Mobile G1), the tab2 switches to tab1. No matter if you are one tab1 or tab2, opening/closing the keyboard will switch it back to tab1. Does anyone know what the fix is?

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

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

发布评论

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

评论(1

秋凉 2024-09-22 07:41:33
  1. 研究 ScrollView 的用法 https://developer.android.com/reference/android/ widget/ScrollView.html
  2. 我猜在键盘打开/关闭时您的活动已重新创建(但不确定),请尝试保存您的选项卡状态(例如所选选项卡的索引)https://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState (android.os.Bundle) 并在 onCreate 期间恢复它。
  1. Investigate usage of ScrollView https://developer.android.com/reference/android/widget/ScrollView.html
  2. I guess on keyboard open/close your activity is recreated (not sure though), try saving your tabs state (e.g. index of selected tab) https://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle) and restoring it during onCreate.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文