Example #1
0
 @Override
 public Cursor swapCursor(Cursor newCursor) {
   if (newCursor == null) {
     return null;
   }
   mStrfrGesamt = 0L;
   mEinstandGesamt = 0L;
   mGewinnGesamt = 0L;
   mSaldoGesamt = 0L;
   rowKT = -1;
   mCursor.copyValues(newCursor);
   return super.swapCursor(mCursor);
 }
Example #2
0
 FragmentDepotsCursorAdapter(@NonNull AWCursorRecyclerViewFragment binder) {
   super(binder, binder.getString(R.string.column_accountID));
   mCursor.setDataBinder(this);
 }