我的DialogFragment
包含ListView
,其中自定义适配器连接到ListView
。该列表显示了一系列项目,每条记录都有一个EditText
,允许用户输入数量。
当这些数量中的任何一个发生变化时,我需要在适配器中更新我的数组,这意味着将EditText
链接到数组中的特定元素。我使用EditText
的getTag / setTag方法执行此操作。数组中的项目由两个属性唯一:
LocationID
,并
RefCode
这些存储在我的TagData
对象中,并设置在getView()点。一旦价值发生变化,我试图使用EditText.getTag()
,遗憾的是无济于事。
问题是我无法访问EditText
方法中的afterTextChanged
。
这是我的适配器的getView()
方法:
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
ItemModel item = (ItemModel) getItem(i);
TagData tagData = new TagData();
tagData.setLocationID(item.getLocationID());
tagData.setRefCode(item.getRefCode());
EditText txtQuantity = ((EditText) view.findViewById(R.id.txtQuantity));
txtQuantity.setTag(tagData);
txtQuantity.setText(String.valueOf(item.getQtySelected()));
txtQuantity.addTextChangedListener(this);
...
return view;
}
上面我创建了一个TagData
对象,并使用EditText
将其绑定到setTag()
。我还在addTextChangedListener
中添加getView()
。 afterTextChanged
方法如下所示:
@Override
public void afterTextChanged(Editable editable) {
EditText editText = (EditText)context.getCurrentFocus(); // This returns the WRONG EditText!?
// I need this
TagData locAndRefcode = (TagData) editText.getTag();
}
根据this帖子,Activity.getCurrentFocus()
应该返回有问题的EditText
,它不会。而是从DialogFragment后面的View返回EditText
。
让我陷入困境。如何从myTextChanged方法中访问EditText
标记?
答案 0 :(得分:4)
如果你将txtQuantity声明为final,然后将一个匿名的新TextWatcher(){...}传递给addTextChangedListener,那么你可以在afterTextChanged(Editable s)方法中直接使用txtQuantity。 希望这会有所帮助。
答案 1 :(得分:2)
您可以使用此代码
private Activity activity;
private TextWatcher textWatcher = new TextWatcher() {
@Override
public void afterTextChanged(Editable s) {
View focView=activity.getCurrentFocus();
/* if t use EditText.settxt to change text and the user has no
* CurrentFocus the focView will be null
*/
if(focView!=null)
{
EditText edit= (EditText) focView.findViewById(R.id.item_edit);
if(edit!=null&&edit.getText().toString().equals(s.toString())){
edit.getTag()
}
}
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before,
int count) {
}
};
public EditAdapter(ArrayList<HashMap<String, String>> list, Activity activity){
this.activity = activity;
this.list = list;
inflater = LayoutInflater.from(activity);
}
答案 2 :(得分:0)
您可以使用EditText#getEditableText
方法:
@Override
public void afterTextChanged(Editable s) {
if(editText.getEditableText() == s){
//
// Your code
//
}
}