Posts

Login And Registration Using SQLite Database and Show Particular ID Data in User Profile Activity

Image
Example Screen Shots : ------------------------------------------------------------------------------------------------------------------------- 1 ) Splash Screen : 2 ) Login Screen : 3 ) Registration Screen :         4 ) Show Particular Student Data After Login Successfully :          ------------------------------------------------------------- XML Files ------------------------------------------------------------- 1 ) splash_screen.xml <? xml version= "1.0" encoding= "utf-8" ?> < RelativeLayout xmlns: android = "http://schemas.android.com/apk/res/android" xmlns: app = "http://schemas.android.com/apk/res-auto" xmlns: tools = "http://schemas.android.com/tools" android :layout_width= "match_parent" android :id= "@+id/rl_splash" android :background= "@color/white" android :layout_height= "match_parent" tools

Android Intent Tutorial

Image
INTENT : Android Intent  is the  message  that is passed between components such as activities, content providers, broadcast receivers, services etc. It is generally used with startActivity() method to invoke activity, broadcast receivers etc. The  dictionary meaning  of intent is  intention or purpose . So, it can be described as the intention to do action. The LabeledIntent is the subclass of android.content.Intent class. Android intents are mainly used to: Start the service Launch an activity Display a web page Display a list of contacts Broadcast a message Dial a phone call etc. TYPES OF INTENT : There are following two types of intents supported by Android Explicit Intents : Explicit intent going to be connected internal world of application,suppose if you wants to connect one activity to another activity, we can do this quote by explicit intent, below image is connecting first activit