Null Pointer Exception on when loading the CrimeList

Hi,

I’m kind of a beginner here…any help would be appreciated!
Here’s my CrimeListFragment.java http://pasted.co/7cb78ff9
This is my CrimeListActivity:http://pasted.co/9cbb685d

Error:
java.lang.NullPointerException: Attempt to invoke virtual method ‘void android.widget.TextView.setText(java.lang.CharSequence)’ on a null object reference
at com.example.criminalintent.CrimeListFragment$CrimeHolder.bindCrime(CrimeListFragment.java:61)
at com.example.criminalintent.CrimeListFragment$CrimeAdapter.onBindViewHolder(CrimeListFragment.java:79)
at com.example.criminalintent.CrimeListFragment$CrimeAdapter.onBindViewHolder(CrimeListFragment.java:66)
This is only partial of the error
I tried debugging but seems that everything IS instantiated…
Thank you!

I found the mistake:
mTitleTextView was called 3 times for the date and checkbox…

Having another issue that only the first Crime is loading on the screen. Its the list view but with only 1 crime. Anyone can help?
Thank you in advance!