I have knowledge of Android that 0 ... I was given a task:

Write an application where you can register users, after registering should go to the page where there is a list of registered users. Clicking on a user should go to the user's page, where there is information about him (the name is date of birth, all that he specified during registration). That's all)

  1. Login page
  2. Registration page
  3. User list page
  4. User info page

Please tell me what to use as a technology? And which database should I use SQLite or MySQL?

And where can I see fit tutorials for such exemplary tasks? I learned a little to write simple programs in a couple of days, only this knowledge is not enough for such a task ..

  • use SQLite. And the task is very simple, and the database will be in one table. - Valera Kvip
  • 2
    I recommend to look at the StartAndroid YouTube lessons. There is a similar task. - Nikita Ryazan
  • @ValeraKvip OK, I’ll use SQLite) - E1mir
  • @ Nikita Ryazan Oo there are a lot of lotions there) Thank you very much for the information) I'll start looking :)) - E1mir
  • @KryTer_NexT and I also recommend the DevColibri channel, I also have something to learn. - Nikita Ryazan

1 answer 1

Concerning sql read about SQLiteOpenHelper . Don't bother with the ListView for this assignment, read about View.inflate() and .addView() for LinearLayout . For screens, use fragment as well as singletone. If you do not dig, then a ride and have time for 3 days.

If you want to leave the coordinates, I will help with advice so that I will not spend a lot of time on stupid mistakes. Good luck

  • Okay, thanks a lot for the advice)) no longer 3 but 2 days left: (Activate built, all I need to do, here's the main problem is the database ... Right now I’m watching watching tutorials on SQLite ... - E1mir