Numberpicker在android中的列表视图中给出了一个问题

时间:2012-09-15 12:00:46

标签: android android-listview

我的listview中有一个自定义数字选择器。我在numberpicker中为我的列表中的第一项添加数量,但是当我滚动列表时,不添加相同的数量会出现在随机项numberpicker中。怎么解决?

1 个答案:

答案 0 :(得分:0)

当我遇到同样的问题并解决问题时,我知道我的答案为时已晚,我想我必须分享我的答案。

if (row == null) { holder.numpicker.setMaxValue(100);
    holder.numpicker.setMinValue(0);
       holder.numpicker.setFocusableInTouchMode(false);
       holder.numpicker.setFocusable(false);
}
else
{

}

 holder.numpicker.setMaxValue(100);
    holder.numpicker.setMinValue(0);
    holder.numpicker.setValue(0);
       holder.numpicker.setFocusableInTouchMode(false);
       holder.numpicker.setFocusable(false);