ベースアダプタを拡張しました---奇妙な問題が発生しています...このリストビューをスクロールすると-最後のアイテムが最初のアイテムに置き換えられ、次にスクロールすると-別のアイテムとすべて..いつかは正しいです。 。なぜこのコードで発生するのですか?
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
// sets the view onto list view
LinearLayout rowLayout = null;
System.out.println("getView " + position + " " + convertView);
rowLayout = (LinearLayout) mInflater.inflate(
R.layout.apps_list_row_items, parent, false);
if (convertView == null) {
// inflating the row
vh.mAppIcon = (ImageView) rowLayout.findViewById(R.id.icon);
vh.mAppName = (TextView) rowLayout.findViewById(R.id.application);
vh.mAppHint = (TextView) rowLayout.findViewById(R.id.hint);
mDownloadButton = (Button) rowLayout.findViewById(R.id.download);
mDownloadButton.setFocusable(false);
} else {
// convertView.getTag();
rowLayout = (LinearLayout) convertView;
}
// convertView.getTag();
// On Click of the download button which triggers an async to download
// the file.
mIcon = mAppIconMapList.get(position);
System.out.println("Icon " + mIcon);
mCurrentApplication = mAvaiableApps.get(position);
System.out.println("Current App " + mCurrentApplication);
vh.mAppIcon.setImageBitmap(mIcon.get(mCurrentApplication));
vh.mAppName.setText(mCurrentApplication.replace(".apk", ""));
vh.mAppHint.setText("Click here to view Description");
return rowLayout;
}