我有一个ListView
,它有自定义适配器(它可以保存字符串)。每个row
都包含一个EditText
。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fdf7e9"
android:focusable="false"
android:focusableInTouchMode="false"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="0.16"
android:background="@drawable/top_bar" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical"
android:padding="5dip" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/editAccount"
android:textColor="#fffdf8eb" />
</RelativeLayout>
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="0.72"
android:orientation="vertical" >
<ListView
android:id="@+id/listPhoneNumber"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#fdf7e9"
android:cacheColorHint="#fdf7e9"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:fadingEdgeLength="15dip"
android:footerDividersEnabled="false"
android:focusable="false"
android:headerDividersEnabled="false" />
</LinearLayout>
<LinearLayout
android:id="@+id/bottomBtns"
style="@android:style/ButtonBar"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.13"
android:background="@drawable/bottom_bar"
android:baselineAligned="true"
android:orientation="horizontal" >
<Button
android:id="@+id/updateAccount"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="0.5"
android:text="@string/menu_quit_account" />
<Button
android:id="@+id/cancelEditAccount"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="0.5"
android:text="@string/cancel" />
</LinearLayout>
</LinearLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#fffdf7e9"
android:longClickable="true"
android:orientation="horizontal"
android:descendantFocusability="beforeDescendants"
android:paddingBottom="5dip"
android:paddingTop="5dip" >
<TextView
android:id="@+id/phoneNumberDescript"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:layout_marginLeft="5dp"
android:text="č. 1 : "
android:textColor="#ad865d"
android:width="50dip" />
<EditText
android:id="@+id/phoneNumberText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:layout_marginRight="55dp"
android:layout_toRightOf="@+id/phoneNumberDescript"
android:focusable="true"
android:paddingLeft="10dip"
android:singleLine="true"
android:textColor="#ff3c2415" />
<ImageButton
android:id="@+id/deletePhoneNumber"
android:layout_width="40dip"
android:layout_height="40dip"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:layout_marginRight="10dip"
android:background="@drawable/delete" />
<TextView
android:id="@+id/numberId"
android:layout_width="0dip"
android:layout_height="0dip"
android:visibility="invisible" />
</RelativeLayout>
如果我点击ListView中的EditText,我想提出整个布局,看看我写的是什么。
单击后,它会推动整个布局,直到我将第一个字母写入EditText或者再次单击焦点的EditText。之后布局向下滚动,但它不会失去焦点,因为我可以继续写输入,但我看不到我在写什么,因为它被软键盘隐藏。
ListView还有Header和Footer,它们也有EditTextes。使用这些EditTextes时,问题是相同的:在第一个字母后或重复点击后,布局滚动回正常位置。
在清单中我有android:windowSoftInputMode="adjustPan"
我也尝试了numbersListView.setItemsCanFocus(true)