Skip to content Skip to sidebar Skip to footer

Notifydatasetchanged() Does Not Affect My Adapterview

I am new to android and I have to create an android app for my final project. I am making a swipe card app and I am using 'com.lorentzos.swipecards:library:1.0.9' library for the s

Solution 1:

just quick review on the code, is this part of code correct?

@OverridepublicObjectgetItem(int position) {
    return position;
}

why don't change it to

@OverridepublicObjectgetItem(int position) {
    return dishesList.get(position);
}

will check it out sometime later

Post a Comment for "Notifydatasetchanged() Does Not Affect My Adapterview"