我写了适配器
<?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并且一切正常时。 我应该如何修复焦点不会跳跃?
答案 0 :(得分: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();
}
});