Types of Animations
Property Animation
View Animation
Drawable Animation
What's For Today ?
FRAME ANIMATION
mediaPlayer.start();
mediaPlayer.pause();
mediaPlayer.stop();
mediaPlayer.reset();
mediaPlayer.release();
An Intent is a messaging object you can use to
request an action from another app component.
e.g., Pick a contact, take a photo, dial a phone
number
Intent is constructed by one component that wants some work done
Received by one activity that can perform that
work
Others Things Involved : Data , Category ,Type ,
Extras , Flags
Explicit Intent : Explicit intents specify the
component to start by name .
e.g. Intent i = new Intent(MainActivity.this,
ActivityTwo.class);
Implicit Intent : Implicit intents do not name a
specific component, but instead declare a
general action to perform.
e.g. Intent i = new Intent(Intent.ACTION_VIEW,
Uri.parse("http:/www.mdg.com"));
components which can react to a certain intent?
A component can register itself via an intent filter for a specific action and specific data.
Android components can register intent filters through the AndroidManifest.xml .
Mobile Development Group
Keep Making Cool Apps
https://www.facebook.com/groups/sdsmobiledevelopment/
SDS MDG
https://www.facebook.com/mdgiitr