同様の質問をいくつか見つけましたが、問題を解決できませんでした。各項目に水平のプログレスバーが含まれるカスタム Listview があります。しかし、リストに多くの項目が含まれている場合、スクロールバーを使用してリストビューをナビゲートすると、いくつかの ProgressBars が消えます。これは何が原因で、どうすれば修正できますか?
public class AdapterMetas extends ArrayAdapter<Metas>{
private int resource;
private Context mContext;
public AdapterMetas(Context context) {
super(context, R.layout.adaptermetas);
this.resource = R.layout.adaptermetas;
mContext = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Metas p = getItem(position);
LinearLayout layout = null;
if (convertView == null) {
LayoutInflater li = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
layout = (LinearLayout) li.inflate(resource, null);
} else {
layout = (LinearLayout) convertView;
}
int value = p.getiValueMeta();
ProgressBar itemMetaBar = (ProgressBar) layout.findViewById(R.id.itemMetaBar);
itemMetaBar.setProgress(value);
return layout;
}
}