What is the difference between an implicit and an explicit intent?
Answers
Answer:
Implicit Intents do not directly specify the Android components which should be called, it only specifies action to be performed. A Uri can be used with the implicit intent to specify the data type.
for example
Intent intent = new Intent(ACTION_VIEW,Uri.parse("http://www.google.com"));
this will cause web browser to open a webpage. Android system searches for all components which are registered for the specific action and the data type.If many components are found then the user can select which component to use..
Explicit intents are used in the application itself wherein one activity can switch to other activity...Example Intent intent = new Intent(this,Target.class); this causes switching of activity from current context to the target activity. Explicit Intents can also be used to pass data to other activity using putExtra method and retrieved by target activity by getIntent().getExtras() methods.
Explanation:
Answer:
sorry this is my question and i still dont know the answer
Explanation:
help!