My recycler view loads so differenctly rather than displaying from 1 to 100 it displays randomly i dont understand the problem.
My Recyler View loads slowly and when they load from 1 to 100 they are not aligned and load randomly
I got it, I created Textview for title and date reference variables in the CrimeListFragment rather than in the CrimeHolder class which made them global so when an view holder has been called it was taking the global ID values which was already there so thats why it was misbehaving. when i put them in the CrimeHolder class they became private and enclosed within the CrimeHolder which is ViewHolder Class so each of them would act independently.