4

我有一个列表视图,其中每一行都包含一个编辑文本。当我在列表视图的最后一行添加文本时,我想在列表视图中添加一个空行。所以我更改了我的列表并调用 notifyDataSetChanged()。不幸的是,焦点转到了列表视图之外的地方。如何将焦点保持在当前的 edit_text 中?我试过 edit_text.requestFocus() - 但它没有用。

代码:

@Override
public View getView(final int position, View convertView, ViewGroup parent)
{
    LayoutInflater inflater=(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View rowView=inflater.inflate(R.layout.design_listview, parent, false);

    EditText edit_text=(EditText) rowView.findViewById(R.id.list_edittext);

    edit_text.setText(values.get(position).text);

    edit_text.addTextChangedListener(new TextWatcher()
    {
        public void beforeTextChanged(CharSequence charSequence, int i, int j, int k) { }

        public void onTextChanged(CharSequence charSequence, int i, int j, int k) { }

        public void afterTextChanged(Editable editable)
        {
            values.get(position).text=editable.toString();

            if(position == values.size()-1 && editable.toString().length() > 0) {
                listaddItem();
                notifyDataSetChanged();
                // How to keep the focus? edit_text.requestFocus(); did not help
            }
        }
        // ..
    return rowView;
    }
}

谢谢!

4

1 回答 1

0

也许 edit_text.setSelection(0); 作品?

于 2014-04-09T08:07:57.180 回答