我正在开发一个使用 ListView 的 Android 应用程序,其中每一行都由一个文本视图和一个进度条组成。除非用户必须滚动浏览一长串列表,否则一切都会顺利进行。
ProgressBars 开始承担当前在屏幕上不可见的其他 ProgressBars 的进度。
我了解这是源于 GetView 实施的常见问题,但我想知道使用 ProgressBars 采取的最佳行动方案是什么。
获取视图:
public View getView(int position, View convertView, ViewGroup parent){
View row = convertView;
ViewWrapper wrapper;
ProgressBar myProgressBar;
int initProgress = myData.get(position).getProgress();
if (row == null){
LayoutInflater inflater = context.getLayoutInflater();
row = inflater.inflate(R.layout.row, null);
wrapper = new ViewWrapper(row);
row.setTag(wrapper);
}
else{
wrapper = (ViewWrapper)row.getTag();
}
RowModel model = getModel(position);
wrapper.getPid().setText(model.toString());
myProgressBar = wrapper.getProgressBar();
myProgressBar.setProgress(initProgress);
myProgressBar.setMax(100);
myProgressBar.setTag(new Integer(position));
return row;
}
视图包装器:
public class ViewWrapper {
View base;
TextView pid = null;
ProgressBar pb= null;
ViewWrapper(View base){
this.base = base;
}
TextView getPid(){
if(pid == null){
pid = (TextView)base.findViewById(R.id.pid);
}
return(pid);
}
ProgressBar getProgressBar(){
if(pb== null){
pb= (ProgressBar)base.findViewById(R.id.progressbar);
}
return(pb);
}
}
问题似乎与:
myProgressBar = wrapper.getProgressBar();
因为 ProgressBar 开始获得回收的 ProgressBar 的行为。但是,我希望它有自己的行为。
缓解这种情况的最佳方法是什么?谢谢。