- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有自定义 ArrayAdapter 的 ListView,它使用 OrderedProductItems
列表(我自己的模型类)。在这个 ArrayAdapter 的 getView 中,我使用了 ViewHolder 设计模式:
@Override
public View getView(int position, View convertView, ViewGroup parent){
View view = convertView;
MyHolder h;
if(view == null){
view = inflater.inflate(layoutResourceId, parent, false);
RelativeLayout rl = (RelativeLayout) view.findViewById(R.id.item_layout);
h = new MyHolder(rl);
view.setTag(h);
}
else
h = (MyHolder) view.getTag();
if(h != null){
h.orderedProductItem = getItem(position);
... // Do stuff like:
// - setting Texts of TextViews/EditText
// - updating data of AutoCompleteTextView and Spinner
// - etc.
h.etResultPrice.setTag(h.orderedProductItem);
h.etResultPrice.addTextChangedListener(new MyTextWatcher(h.etResultPrice));
}
}
在我的 ListView 的项目中,我有一个使用自定义 TextWatcher 的 EditText。在这个 TextWatcher 中,我将用户的输入保存到我的 OrderedProductItem 类中:
public class MyTextWatcher implements TextWatcher
{
// Logcat tag
private static final String TAG = "MyTextWatcher";
// The values used for the test output of changed EditText texts
private View view;
private String from;
public MyTextWatcher(View v){
view = v;
}
// Default Android method used by TextWatcher
// (to do something before an EditText's is going to change)
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// Get the old text before we make a change to this EditText
from = ((EditText)view).getText().toString();
}
// Default Android method used by TextWatcher
// (to do something when an EditText's text is changing)
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {}
// Default Android method used by TextWatcher
// (to do something after an EditText's text is changed)
@Override
public void afterTextChanged(Editable s) {
if(s != null && s.toString() != null && view.getTag() != null){
OrderedProductItem opi = (OrderedProductItem)view.getTag();
if(opi != null){
// Send the changed text of this EditText to the OrderedProductItem's Result-values
if(view.getId() == R.id.et_result_amount){
int amount = 1;
try{
amount = Integer.parseInt(s.toString());
}
catch(NumberFormatException ex){
amount = 1;
}
if(opi.getResultAmount() != amount){
opi.setResultAmount(amount);
Log.i(TAG, "ResultAmount changed from " + from + " to " + s.toString() + " (-> " + String.valueOf(opi.getResultAmount()) + ")");
}
}
else if(view.getId() == R.id.actv_result_name){
if(!V.compare(opi.getResultName(), s.toString(), false, false)){
opi.setResultName(s.toString());
Log.i(TAG, "ResultName changed from " + from + " to " + s.toString() + " (-> " + opi.getResultName() + ")");
}
}
else if(view.getId() == R.id.et_result_price){
double price = C.priceStringToDouble(s.toString());
if(opi.getResultPrice() != price){
opi.setResultPrice(price);
Log.i(TAG, "ResultPrice changed from " + from + " to " + s.toString() + " (-> " + String.valueOf(opi.getResultPrice()) + ")");
}
}
}
else
Log.wtf(TAG, "Tag's OrderedProductItem is null");
}
}
}
现在我的问题是:由于 ArrayAdapter 使用 getView-recycler ( see this post for more information about getView recycling (including picture) ),我的 TextWatcher 覆盖了另一个 OrderedProductItem 的不正确数据。例如,假设我的 OrderedProductItem 的 EditTexts 在创建时是这样填充的(这里没有错):
现在,当我向下滚动时,会发生以下情况(仍然没有错):
当我向上滚动时,问题出现了:
我确实尝试在 getView 开始时暂时禁用 TextWatcher(在我获得 EditTexts 之后),然后设置 OrderedProductItem 的值,然后将 MyTextWatcher 重新应用到它们,但它仍然会在之后更改 OrderedProductItem 的值我重新应用了我的 TextWatcher..
有谁知道在使用 TextWatcher 保存 Item 的 EditTexts 的 UserInput 时如何处理 getView 回收?
PS:我知道我可以在 EditTexts 旁边添加一个按钮,这样它只会在单击按钮时保存数据,但我不想要这个。
最佳答案
看来您的问题出在这里:
etResultPrice.setTag(currentOrderedProductItem);
如果您尝试删除 TextWatcher 但它仍然有问题,它引用了标签,如果您没有使用回收 View 正确重置标签,您将会遇到问题。特别是,看起来您正在尝试重置它,但没有正确执行,因为当回收 View 时,它们应该按顺序进行。这意味着当您向上滚动时,您的行:
expected "3" -- actual "12"
expected "4" -- actual "11"
expected "5" -- actual "5"
expected "6" -- actual "6"
关于“预期的“4”——实际的“11””——你重置标签的逻辑一定是错误的,因为它应该回收“14”——所以问题不在于回收,而是你的逻辑用于执行回收。您的代码假设这是第 11 项,就像在初始滚动中一样,而不是识别它应该是第 4 项。
可能是这样的:当你创建一个 View 时,你这样做:
view.setTag(h);
但在你的逻辑中,你也这样做:
h.etResultPrice.setTag(h.orderedProductItem);
这看起来是递归的,如果您的 View 持有者有问题,可能会不同步。
关于android - 带有自定义 ArrayAdapter(和 getView 回收)的 ListViewText 中用于 EditText 的 TextWatcher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25242410/
要更新 Listview 我们可以做以下两件事: 1) 创建一个新的ArrayAdapter,并在每次更新数据时将其绑定(bind)到ListView。 this.listView.setAdapte
基本上我所拥有的是一个显示 ListView 的 fragment 。它目前使用 ArrayAdapter。但是,我正在尝试扩展 ArrayAdapter 以制作我自己的自定义适配器。然后,当我更改代
这真的很奇怪。 当我为 ListView 使用标准 ArrayAdapter 时,调用 setItemChecked 工作正常 但是当使用定制的 ArrayAdapter 时它不会。 原因是什么?这是
我想在我的 android 应用程序中使用 AutoCompleteTextView。我知道如何将它与简单的字符串数组一起使用,但我希望 AutoCompleteTextView 使用对象列表来执行完
问题总结:adapter和spinner都在Spinner Activity中。一旦用户选择了一个名字,它就会将它们发送到主 Activity 。我想从另一个 Activity 中调用 ArrayAd
lang.NullPointerException android.widget.ArrayAdapter.init(ArrayAdapter.java)只是将 Arraylist 值添加到 cust
在开发 Android 应用程序时,我从类似于“Item 1”、“Item 2”、“Item 3”的网站上得到了一行响应我需要将这一行转换为一个列表,以便在 simplelistitem 的数组适配器
您好,我如何检查复选框是否已选中,以及是否已选中我怎样才能删除有问题的行?谢谢你 数组适配器: public class Todoadapter extends ArrayAdapter {
https://developer.android.com/guide/topics/ui/declaring-layout#FillingTheLayout 在这些文档中,我们有以下代码 fragm
我有一个填充数据“neededRepData”的列表,我正在尝试将此列表添加到我的适配器中,但遇到了问题。下面是我的 Reps 类和我的方法(来自另一个类)来迭代所需的 RepData。 public
拥有可以处理多种对象类型的数组适配器的最佳实践是什么? Adapter extends ArrayAdapter 我有 3 种类型的类(class) A.class , B.class , C.cla
我正在制作一个将 JSON 数据解析为 ListView 的应用程序。这对我不起作用;它没有给我任何数据。 这是我的代码: public class MainActivity extends AppC
我有一个 Activity 从另一个 Activity 加载sharedPreference,并从当我编译我的应用程序时,使用 arrayAdpter 将 sharePreferenece 放入 li
我尝试使用 arrayAdapter 自定义将图像和文本加载到 ListView,但加载图像失败 这是我的数组适配器 public class CustomAdapter extends ArrayA
我在使用我的应用程序时遇到问题。我刚刚开始开发该应用程序,到目前为止只花了大约 15 个小时。但我遇到了障碍。通常我可以用谷歌搜索障碍,我的大部分答案都来自这个论坛! 所以我希望我能找到解决方案。下面
我之前曾用其他适配器(如 SimpleAdapter)问过这个问题,但简单适配器的解决方案不适用于 ArrayAdapter。在 SimpleAdapter 中,我获得了屏幕宽度和高度,然后将其传递给
我有 3 个类(class),我希望使用自动完成文本框向用户显示来自 Web 服务(rest api)的某些数据(又名城市)。我已经在我自己的应用程序的各种功能上使用了这个实现,但是由于某种原因,te
我正在从 Google App Engine 获取字符串形式的数据,因此我必须在一个线程中执行此操作。接下来我想在 ListView 中显示它,我正在尝试执行类似以下代码的操作: public voi
我有一个带有自定义 ArrayAdapter 的 ListView ,它设置在一个 fragment 中。仅设置 ListView 中的第一行。 这可能是一般使用带有 fragment 的 ListV
我正在尝试修改 MyKong 中的代码,添加一些更改 TextView 字体的行,但是当我尝试运行时遇到强制关闭。 这里是 MobileArrayAdapter.java > package com.
我是一名优秀的程序员,十分优秀!