1

我已经阅读了大量类似的问题,但我没有找到解决我问题的解决方案,所以请不要将其标记为重复。

我有一个ListFragment包含FrameLayouta 的 a ListView,通过 a 填充custom ArrayListAdapter。列表的每一行包含三个元素:

Checkbox,EditTextImageButton.

我的问题是,当我点击一个EditText来更改string它时,它包含键盘出现,但焦点立即消失,我无法写字。

请注意,我已经添加到我Activitymanifest文件中

android:windowSoftInputMode="adjustResize"

即便是

android:descendantFocusability="afterDescendants" android:descendantFocusability="beforeDescendants"

不能解决问题。

这是我的 XML 代码:

row_item.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/item_checkbox"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    />

<EditText
    android:id="@+id/item_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="60px"
    android:text="Test text"
    android:singleLine="true"
    android:layout_toRightOf="@id/item_checkbox"
    android:layout_centerVertical="true"
    android:layout_toLeftOf="@+id/item_important"
    android:layout_toStartOf="@+id/item_important" />

<ImageButton
    android:id="@+id/item_important"
    android:layout_width="20dip"
    android:layout_height="20dip"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="10dp"
    android:visibility="visible"
    android:layout_marginLeft="10dp" />

</RelativeLayout>

片段列表.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"
    >

    <ListView android:id="@id/android:list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
     />

</FrameLayout>

如果您能建议我一些资源来了解在这种情况下可聚焦性如何工作,那就太好了。

谢谢


更新

我发现问题是由键盘出现造成的:我猜视图回收是EditText失去焦点的原因。

4

3 回答 3

1

RecyclerView我使用新课程解决了我的问题。这似乎是一个问题ListView

于 2015-03-31T15:31:46.387 回答
0

试试这个代码

row_item.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<CheckBox
    android:id="@+id/item_checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true" 
    android:focusable="false"/>

<EditText
    android:id="@+id/item_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_toLeftOf="@+id/item_important"
    android:layout_toRightOf="@id/item_checkbox"
    android:layout_toStartOf="@+id/item_important"
    android:minHeight="60px"
    android:focusable="true"
    android:singleLine="true" />

<ImageButton
    android:id="@+id/item_important"
    android:layout_width="20dip"
    android:layout_height="20dip"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:visibility="visible" />

</RelativeLayout>

片段列表.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
>

 <ListView
    android:id="@id/android:list"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:descendantFocusability="beforeDescendants"/>

</FrameLayout>

活动代码

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.fragment_list);

    ArrayList<String> mArrayList = new ArrayList<String>();
    /**mArrayList.add("Test");
    mArrayList.add("Test");
    mArrayList.add("Test");
    mArrayList.add("Test");**/

    CustomeAdapter adapter = new CustomeAdapter(this, mArrayList);
    ListView listView = (ListView) findViewById(android.R.id.list);
    listView.setItemsCanFocus(true);
    listView.setAdapter(adapter);
}

public class CustomeAdapter extends ArrayAdapter {

    ArrayList<String> mArrayList;
    @SuppressWarnings("unchecked")
    public CustomeAdapter(Context context, ArrayList<String> users) {
        super(context, R.layout.row_item, users);
        mArrayList = new ArrayList<String>();
        mArrayList = users;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        ViewHolder viewHolder; // view lookup cache stored in tag
        if (convertView == null) {
            viewHolder = new ViewHolder();
            convertView = LayoutInflater.from(getContext()).inflate(R.layout.row_item, parent, false);
            viewHolder.mCheckBox = (CheckBox) convertView.findViewById(R.id.item_checkbox);
            viewHolder.mEditText = (EditText) convertView.findViewById(R.id.item_text);
            viewHolder.mImageView = (ImageView) convertView.findViewById(R.id.item_important);

            convertView.setTag(viewHolder);
        } else {
            viewHolder = (ViewHolder) convertView.getTag();
        }
        viewHolder.mEditText.setText(mArrayList.get(position));
        return convertView;
    }

    // View lookup cache
    private class ViewHolder {
        CheckBox mCheckBox;
        EditText mEditText;
        ImageView mImageView;
    }
}
于 2015-01-16T12:01:40.840 回答
0

你设置android:focusable="true"android:focusableInTouchMode="true"你的EditText

也在android:windowSoftInputMode="adjustPan"你的 AndroiManifest 文件中。

于 2019-08-22T15:23:21.437 回答