0

我写了适配器

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
...
    <EditText
        android:id="@+id/weight"
        android:layout_width="55dp"
        android:layout_height="wrap_content"
        android:layout_marginRight="15dp"
        android:ems="10"
        android:inputType="number"
        android:textSize="14sp" >
    </EditText>
...
</LinearLayout>

并将其添加到我的列表中。在适配器中,我添加了一个 textWatcher 来加权 EditText,如下面的代码

    holder.weight.addTextChangedListener(new TextWatcher() {
        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {
        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {
        }

        @Override
        public void afterTextChanged(Editable s) {
            if (s.length() != 0)
                try {
                // ... 
                } catch (IndexOutOfBoundsException e) {
                    Log.e(TAG, e.toString());
                }

        }
    });

但是,当我在列表中选择一行来更改 EditText 中的数值时,焦点从 EditText 和键盘设置为默认值,当我再次选择我的 EditText 并且一切正常时。我应该如何修复它以使焦点不跳?

4

1 回答 1

0

我不确定,但如果你的注意力发生变化,试试这个

holder.qty.setOnFocusChangeListener(new View.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
    // TODO Auto-generated method stub
    final EditText qty = (EditText) v;
    qty.setFocusableInTouchMode(true);
    qty.setFocusable(true);
    StaticData.cartdata.get(position).qty = qty.getText().toString();
}

});

于 2012-10-23T10:31:30.903 回答