问题视图切换选项卡并显示软键盘

发布于 2024-11-25 21:43:17 字数 968 浏览 2 评论 0原文

我遇到了以下问题,希望当它确实发生时我可以通过下图弄清楚。

有效 XHTML
(来源:tricky.dds.nl

我有一个应用程序,其中编辑文本显示在屏幕中心下方。当我按下 EditText 时,软键盘显示 (1),这将使视图稍微向上滑动,但选项卡仍然可见。当键盘未关闭但按下 tab3 时 (2),视图将更改为选项卡 3。当键盘关闭时 (3),标题栏会再次显示,但视图不会向上滑动。

XML布局如下:

<TabHost android:id="@+id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TabWidget android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />

    ...
  
    </TabHost>
</LinearLayout>

希望有人知道如何解决这个问题。

提前致谢!

PS:软键盘在我的模拟器中没有按应有的方式显示。 (这不会影响问题,因为在我的手机上,行为是相同的。PSS

:我删除了图中应用程序的内容,因为它还不值得展示。我没有付出任何努力图形还没有。

I've got the following problem, hopefully I can make it clear when it does occur with the following figure.

Valid XHTML
(source: tricky.dds.nl)
.

I've got a app where an edittext is display just below the center of the screen. When I push on the EditText the softkeyboard is showing (1) which will slide the view slightly up, but the tabs are still visible. When the keyboard isn't dismissed but tab3 is pressed (2) the view will change to tab 3. When the keyboard is dismissed (3) the title bar is shown again but the view isn't slide back up.

The XML layout is as follows:

<TabHost android:id="@+id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TabWidget android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />

    ...
  
    </TabHost>
</LinearLayout>

Hopefully someone has an idea how to solve this problem.

Thanks in advance!

PS: The soft keyboard isn't shown the way is should in my emulator. (this doesn't affect the problem, because on my phone the behavior is the same.

PSS: I removed the content of the app in the figure because it isn't worth showing just yet. I didn't put any effort in the graphics yet.

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

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

发布评论

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

评论(1

旧街凉风 2024-12-02 21:43:17

为了解决这个问题,我将选项卡放置在 ScrollView 中。这样,只有选项卡的内容会滚动,而不是选项卡本身。当键盘关闭时,内容会很好地再次向下滚动。

To solve this problem I've placed the tabs inside a ScrollView. This way only the content of the tabs will scroll and not the tabs itself. When the keyboard is dismissed the contect will nicely Scroll down again.

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