Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. if (IsCar = false) {
  2. SQLiteCursor kursor = db.pobierzdane();
  3. if (kursor.getCount() > 0) IsCar = Boolean.TRUE;
  4. else {
  5. Intent dodaj = new Intent(HomeActivity.this, AddCarActivity.class);
  6. startActivity(dodaj);
  7. }
  8. ;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement