Best site to learn android http://www.javatpoint.com/
download pdf http://www.tutorialspoint.com/
Best example http://www.theappguruz.com/
Swift Application Development for ios
http://code.tutsplus.com/ categories/mobile-development
http://programmerguru.com/ android-tutorial/
http://code.tutsplus.com/
http://programmerguru.com/
Implicit Intents
These intents do not name a target and the field for the component name is left blank. Implicit intents are often used to activate components in other applications. For example:// Implicit Intent by specifying a URI Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com")); // Starts Implicit Activity startActivity(i);
explicite
- button1.setOnClickListener(new
OnClickListener(){ - public void onClick(
View view) { - Intent i = new
Intent(getApplicationContext() , ActivityTwo.class); - i.putExtra("Value1",
"Android By Javatpoint"); - i.putExtra("Value2",
"Simple Tutorial"); - // Set the request
code to any code you like, you can identify the - // callback via
this code - startActivity(i);
Android Fragment is the part of activity, it is also known as
sub-activity. There can be more than one fragment in an activity.
Fragments represent multiple screen inside one activity...............................
http://manojprasaddevelopers.
No comments:
Post a Comment