显示键盘时 ListView 不会调整大小
我有一个显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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.