CopyPastor

Detecting plagiarism made easy.

Score: 0.8038241267204285; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2018-11-04
by Vishal Sharma

Original Post

Original - Posted on 2018-11-04
by Sifat Ullah Chowdhury



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Add this on your adapter class @Override public long getItemId(int position) { return position; } And call constructor like this :- public IntroductionAdapter(Context context, List<Introduction> introductionList) { this.context = context; this.introductionList = introductionList; setHasStableIds(true); }
Not sure about this. But you can try adding this two things in your adapter:
@Override public long getItemId(int position) { return position; }
And change your constructor like this:
public IntroductionAdapter(Context context, List<Introduction> introductionList) { this.context = context; this.introductionList = introductionList; setHasStableIds(true); }

        
Present in both answers; Present only in the new answer; Present only in the old answer;