Example #1
0
 public override void bindView(android.view.View view, android.content.Context context
                               , android.database.Cursor cursor)
 {
     android.widget.CheckedTextView text = (android.widget.CheckedTextView)view.findViewById
                                               ([email protected]);
     text.setText(java.lang.CharSequenceProxy.Wrap(cursor.getString(this.mLabelIndex))
                  );
     listView.setItemChecked(cursor.getPosition(), cursor.getInt(this.mIsCheckedIndex)
                             == 1);
 }