コード例 #1
0
 /**
  * Helper method to update View with the Model
  *
  * @param crime
  */
 public void bindCrime(Crime crime) {
   mCrime = crime;
   mTextViewTitle.setText(mCrime.getTitle());
   mTextViewDate.setText(mCrime.getFormattedDate());
   mCheckBoxSolved.setChecked(mCrime.isSolved());
 }