显示键盘时 ListView 不会调整大小

发布于 2024-10-31 12:43:55 字数 1340 浏览 4 评论 0原文

我有一个显示 ListView 的活动。 ListView 中的项目中有 EditText 字段,因此当它们点击文本字段时,虚拟键盘会滑入视图。它覆盖了 ListView,因此您看不到键盘后面的项目。

我已将该 Activity 的清单配置为 adjustmentResize:

<activity android:name=".StatisticalActivity"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar"
                  android:screenOrientation="portrait"
                  android:windowSoftInputMode="adjustResize"
                  >

.. 但显示键盘时它不会调整大小。

这是我的活动的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    >

    <RelativeLayout
        android:id="@+id/toolbar"
        android:layout_width="fill_parent"
        android:layout_height="40sp" android:paddingLeft="4dp" android:background="@drawable/toolbar_gradient" android:paddingRight="6dp">

        ...

    </RelativeLayout>

    <ListView
        android:id="@+id/tableView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#333"
    />
</LinearLayout>

我做错了什么?

I have an Activity which shows a ListView. The items in the ListView have EditText fields in them, so when they tap a textfield the virtual keyboard slides into view. It is covering the ListView so you can't see the items behind the keyboard.

I've configured the Manifest for that Activity to adjustResize:

<activity android:name=".StatisticalActivity"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar"
                  android:screenOrientation="portrait"
                  android:windowSoftInputMode="adjustResize"
                  >

.. but it isn't resizing when the keyboard is shown.

This the layout for my activity:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    >

    <RelativeLayout
        android:id="@+id/toolbar"
        android:layout_width="fill_parent"
        android:layout_height="40sp" android:paddingLeft="4dp" android:background="@drawable/toolbar_gradient" android:paddingRight="6dp">

        ...

    </RelativeLayout>

    <ListView
        android:id="@+id/tableView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#333"
    />
</LinearLayout>

What am I doing wrong?

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

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

发布评论

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

评论(1

谜兔 2024-11-07 12:43:55

如果您使用 WindowManager.LayoutParams.FLAG_FULLSCREEN 将 Activity 设置为全屏,则视图的自动调整大小功能将不起作用。因此,不幸的是,最好的选择是不要使用全屏(即顶部的状态栏可见),此时调整大小将正常进行。

If you're setting the Activity to Full Screen using WindowManager.LayoutParams.FLAG_FULLSCREEN, then the auto-resizing of the view doesn't work. So unfortunately, your best bet is to not use Full Screen (i.e. have the status bar at the top visible), at which point the resizing will work normally.

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