
Explore installing Android Studio and building a starter app with Parse backend, sign up, log in, and viewing home page status updates.
Download Android Studio: https://developer.android.com/sdk/installing/studio.html
Genymotion: http://www.genymotion.com
Parse. http://parse.com
To include the library from parse which I mistakenly omitted in video 4 , please follow this simple guideline from parse. Head to the quick start guide.
https://parse.com/docs/android_guide
See how parse stores data as objects with key-value pairs, saves a game score object, retrieves data with find or get in background, and signs up users in background.
Design a registration form in Android Studio, using XML layout and code, with username, email, and password fields and a register button wired by IDs, NBC pattern.
Design a login form in Android Studio and use explicit intents to navigate to the home page after sign up, with data passing between activities.
Custom Adapter code
Here is the custom adapter link. http://ronnykibet.com/live-update-custom-adapter/
Click list items to open a detail view and retrieve the starting object's id, then query parse in background to fetch and update the status string for display.
Asset Stuido: http://romannurik.github.io/AndroidAssetStudio/
In this Android course, we are going to use the new Android Studio IDE provided by Google to develop a live user's status update application. User's will be able to sign up for an account, Log in, then start posting status update as well as viewing other user's updates in a Listview. Download the App. Live Update.
We will be using the MVC pattern, where the xml will be used for creating views and java code as the controller. Our data will be stored in a cloud server, Parse website.
There is a lot to cover so let's get started.