我的布局上有EditText
,其属性为android:windowSoftInputMode="adjustPan"
这样用户可以在输入时看到底部文字。
但是当用户在键盘打开时尝试标记某些文本进行复制时,键盘失去焦点(用户不能再输入任何内容,但键盘仍然存在)并且在某些设备(例如我的三星Galaxy平板电脑3)上,文本向后滚动,大部分文本被无法选择的键盘隐藏。
我的chat.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chatlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:orientation="vertical" >
<ListView
android:id="@+id/chatView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/linearLayout1"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:divider="#0000" >
</ListView>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/chatView"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" >
<ImageButton
android:id="@+id/findbattle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/find_a_battle"
android:src="@drawable/findbattle" />
<EditText
android:id="@+id/chatInput"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginRight="4dp"
android:layout_weight="0.98"
android:hint="@string/send_message"
android:inputType="text" />
</LinearLayout>
</RelativeLayout>