I am trying to use two types of views and two types of ViewHolrdes, but I got an error:
java.lang.ArrayIndexOutOfBoundsException: length=2; index=2 at android.widget.AbsListView$RecycleBin.addScrapView(AbsListView.java:6705) at android.widget.AbsListView.trackMotionScroll(AbsListView.java:5210) at android.widget.AbsListView$FlingRunnable.run(AbsListView.java:4368) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:776) at android.view.Choreographer.doCallbacks(Choreographer.java:579) at android.view.Choreographer.doFrame(Choreographer.java:547) at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:762) at android.os.Handler.handleCallback(Handler.java:800) at android.os.Handler.dispatchMessage(Handler.java:100) at android.os.Looper.loop(Looper.java:194) at android.app.ActivityThread.main(ActivityThread.java:5371) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:525) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600) at dalvik.system.NativeStart.main(Native Method)
And here is my adapter:
public class FriendsListAdapterFromKesh extends ArrayAdapter<FriendListEntryItem> { List<FriendListEntryItem> friends; List<FriendListEntryItem> friendsWithoutPoints; Context context; private LayoutInflater inflater; private LayoutInflater mLayoutInflater; private static String ROOT_DIRECTORY_PATH = Environment.getExternalStorageDirectory() + File.separator + ".SleepKeeker/Photos old"; FriendsTab friendsTab; public FriendsListAdapterFromKesh(Context context, final List<FriendListEntryItem> friends, final List<FriendListEntryItem> friendsWithoutPoints) { super(context, 0); this.context = context; inflater = LayoutInflater.from(context); this.friendsWithoutPoints = friendsWithoutPoints; this.friends = friends; friendsTab = new FriendsTab(); mLayoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); } public void updateList(List<FriendListEntryItem> newlist1, List<FriendListEntryItem> newlist2) { friends.clear(); friends.addAll(newlist1); friendsWithoutPoints.clear(); friendsWithoutPoints.addAll(newlist2); this.notifyDataSetChanged(); } public List<FriendListEntryItem> getFriends() { return friends; } @Override public int getCount() { return friends.size() + friendsWithoutPoints.size(); } public String getIdSocTypeName(int position) { if (friends == null || position + 1 >= friends.size()) { return ""; } FriendListEntryItem ei = friends.get(position - 1); return ei.userId + "," + ei.socType + "," + ei.name; } static class ViewHolder1 { public ImageView image = null; public TextView title = null; public TextView subtitle = null; } static class ViewHolder2 { public ImageView image; public TextView title; public TypefacedButton button; } @Override public int getItemViewType(int pos) { if (pos < friends.size()) return 1; return 2; }
Error scrolling list. But I do not understand why. I spent a lot of time solving this problem, but to no avail
source share