我在列表视图中有一个餐馆菜单,列表视图中的每一行都有:
为了满足我有一个具有上述属性的MenuItem对象类。
我已经为listview实现了自定义适配器。现在我需要在EditText上实现onTextChangedListener,这样无论何时更改数量,我的对象都会更新,因此会反映在最终订单账单中。我已将默认数量设置为1。
我的适配器类
public class MenuAdapter extends ArrayAdapter<MenuItem> {
private Context context;
public MenuAdapter(Context context, int textViewResourceId, List<MenuItem> objects) {
super(context, textViewResourceId, objects);
this.context = context;
}
@Override
public View getView(int pos, View convertView, ViewGroup parent){
try{
android.view.LayoutInflater inflator = android.view.LayoutInflater.from(getContext());
View customView = inflator.inflate(R.layout.itemdetail, parent, false);
MenuItem singleItem = getItem(pos);
//ImageView iconImg = (ImageView) customView.findViewById(R.id.imgMenuItem);
TextView nameTxt = (TextView) customView.findViewById(R.id.nameText);
EditText qtyDdl = (EditText) customView.findViewById(R.id.inputQty);
TextView priceTxt = (TextView) customView.findViewById(R.id.priceText);
CheckBox selectChk = (CheckBox)customView.findViewById(R.id.chkItem);
nameTxt.setText(singleItem.getName());
qtyDdl.setText("1");
qtyDdl.addTextChangedListener(new TextWatcher()
{@Override
public void onTextChanged(CharSequence s, int start, int before, int count){
int i = start;
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}});
priceTxt.setText(singleItem.getPrice());
selectChk.setOnCheckedChangeListener((SaltnPepperActivity)context);
return customView;
}catch(Exception e){
Log.e("MenuAdapter", e.toString());
return null;}
}
}
Q1:每当文本发生变化时,如何获取视图中正在更改的行的位置? Q2:我是否需要在Activity类中实现onTextChangedListener?如果是这样,我又如何获得列表中点击的项目的位置?
答案 0 :(得分:3)
在getView()
方法回调中将Edittext“qtyDdl”设为final,然后将位置设置为:
qtyDdl.setTag(pos)
在此之后,您应该可以通过调用Integer.parseInt(qtyDdl.getTag().toString());
来获取textChangeListener中的位置