Android must know-Use Intent to open third-party applications and verify availability

Android must know-Use Intent to open third-party applications and verify availability

This article mainly records:

  • Three ways to use Intent to open third-party applications or specify Activities
  • How to determine whether the Intent can be parsed when using the above three methods
  • Possible omissions in determining whether the Intent can be parsed

Basics

1. App entry Activity and its icon

[[202293]]

A normal application will have an entry Activity by default, which is usually written in AndroidManifest.xml as follows:

  1. <application>
  2. <activity android: name = ".MainActivity" >
  3. <intent-filter>
  4. < action android: name = "android.intent.action.MAIN" />
  5.  
  6. <category android: name = "android.intent.category.LAUNCHER" />
  7. </intent-filter>
  8. </activity>
  9. ...
  10. </application>

Only when such an Activity is configured, the application will know which Activity to start when it is clicked. If the value of category is changed to android.intent.category.DEFAULT, then the icon of this application will not be visible on the desktop and it cannot be opened directly.

How to use Intent to open a third-party application or specify an Activity

  1. Only know the package name - need to have a default entry Activity
  2. Start the Activity of a specified third-party application - the package name and Activity name are required, and the Activity's Export="true"
  3. Implicitly launch third-party applications

1. Use PackageManager.getLaunchIntentForPackage()

  1. String package_name= "xx.xx.xx" ;
  2. PackageManager packageManager = context.getPackageManager();
  3. Intent it = packageManager.getLaunchIntentForPackage(package_name);
  4. startActivity(it);

This method is used when you only know the package name and want to start the application. The biggest restriction on the application is that there is a default entry Activity.

When there is no default entry Activity, a NullPointerException will be reported:

  1. java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Intent.toString()'   on a null object reference

Let’s take a look at the description of the getLaunchIntentForPackage() method:

  1. /**
  2. * Returns a "good" intent to launch a front-door activity in a package.
  3. * This is used, for example, to implement an "open" button when browsing
  4. * through packages. The current implementation looks first   for a main
  5. * activity in the category {@link Intent#CATEGORY_INFO}, and   next   for a
  6. * main activity in the category {@link Intent#CATEGORY_LAUNCHER}. Returns  
  7. * <code> null </code> if neither are found.
  8. *
  9. * @param packageName The name   of the package to inspect.
  10. *
  11. * @ return A fully-qualified {@link Intent} that can be used to launch the
  12. * main activity in the package. Returns <code> null </code> if the package
  13. * does not contain such an activity, or if <em>packageName</em> is   not  
  14. * recognized.
  15. */
  16. public abstract Intent getLaunchIntentForPackage(String packageName);

public abstract Intent getLaunchIntentForPackage(String packageName);

So you can use this method to determine whether the Intent is empty.

  1. String package_name = "xx.xx.xx" ;
  2. PackageManager packageManager = getPackageManager();
  3. Intent it = packageManager.getLaunchIntentForPackage(package_name);
  4. if (it != null ){
  5. startActivity(it);
  6. } else {
  7. //There is no default entry Activity
  8. }

2. Use Intent.setComponent()

  1. String package_name = "xx.xx.xx" ;
  2. String activity_path = "xx.xx.xx.ab.xxActivity" ;
  3. Intent intent = new Intent();
  4. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//optional
  5. ComponentName comp = new ComponentName(package_name,activity_path);
  6. intent.setComponent(comp);
  7. startActivity(intent);

This method can start an application-specified Activity, not limited to the default entry Activity. However, this method requires many conditions, as follows:

Know the package name of the App and the full path and name of the Activity

  1. The target Activity to be started has the attribute Export="true" in AndroidManifest.xml
  2. In this way, how to determine whether the target Activity exists?

The following is a very common usage circulating on the Internet:

  1. String package_name = "xx.xx.xx" ;
  2. String activity_path = "xx.xx.xx.ab.xxActivity" ;
  3. Intent intent = new Intent();
  4. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//optional
  5. ComponentName cn = new ComponentName(package_name,activity_path);
  6. intent.setComponent(cn);
  7.  
  8. if (intent.resolveActivity(getPackageManager()) != null ) {
  9. startActivity(intent);
  10. } else {
  11. //The specified Activity cannot be found
  12. }

Unfortunately, the Intent.resolveActivity() method cannot determine whether the Activity to be started in this way exists. If this Activity does not exist, a java.lang.IllegalArgumentException: Unknown component exception will be reported, causing the program to crash.

Let's look at the code for resolveActivity() and its similar method resolveActivityInfo():

  1. public ComponentName resolveActivity(PackageManager pm) {
  2. if (mComponent != null ) {
  3. return mComponent;
  4. }
  5.  
  6. ResolveInfo info = pm.resolveActivity(this,
  7. PackageManager.MATCH_DEFAULT_ONLY);
  8. if (info != null ) {
  9. return new ComponentName(
  10. info.activityInfo.applicationInfo.packageName,
  11. info.activityInfo. name );
  12. }
  13.  
  14. return   null ;
  15. }
  16.  
  17. public ActivityInfo resolveActivityInfo(PackageManager pm, int flags) {
  18. ActivityInfo ai = null ;
  19. if (mComponent != null ) {
  20. try {
  21. ai = pm.getActivityInfo(mComponent, flags);
  22. } catch (PackageManager.NameNotFoundException e) {
  23. // ignore  
  24. }
  25. } else {
  26. ResolveInfo info = pm.resolveActivity(this,
  27. PackageManager.MATCH_DEFAULT_ONLY | flags);
  28. if (info != null ) {
  29. ai = info.activityInfo;
  30. }
  31. }
  32.  
  33. return ai;
  34. }

Obviously, in this method, we set the ComponentName first, so mComponent will be returned directly to us without any judgment logic. In contrast, resolveActivityInfo() can make effective judgments and return null. Therefore, we choose to use Intent.resolveActivityInfo() to make judgments in this way:

  1. String package_name = "xx.xx.xx" ;
  2. String activity_path = "xx.xx.xx.ab.xxActivity" ;
  3. Intent intent = new Intent();
  4. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//optional
  5. ComponentName cn = new ComponentName(package_name,activity_path);
  6. intent.setComponent(cn);
  7.  
  8. if (intent.resolveActivityInfo(getPackageManager(), PackageManager.MATCH_DEFAULT_ONLY) != null ) {
  9. startActivity(intent);
  10. } else {
  11. //The specified Activity cannot be found
  12. }

3. Implicitly launch third-party applications

This method is mostly used to start functional applications in the system, such as making calls, sending emails, previewing pictures, opening a web page using the default browser, etc.

  1. > Intent intent = new Intent();
  2. > intent.setAction( action );
  3. > intent.addCategory(category);
  4. > intent.setDataAndType( "abc://www.dfg.com" , "image/gif" );
  5. > startActivity(intent);
  6. >
  • Condition 1: IntentFilter has at least one action and at least one Category, but may not have Data and Type
  • Condition 2: If there is data, the data in the parameter must comply with the data rules
  • Condition 3: Action and Category must match an Action and a Category in the Activity (Category default: android.intent.category.DEFAULT)

There are many implicit startup functions, so I won’t list them all. You can directly search for relevant codes when needed. Let’s take opening a web page as an example:

  1. Uri uri = Uri.parse( "http://www.abc.xyz" );
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(intent);

At this point, there is nothing wrong with using the Intent.resolveActivity() method directly:

  1. Uri uri = Uri.parse( "http://www.abc.xyz" );
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  3.  
  4. if (intent.resolveActivity(getPackageManager()) != null ) {
  5. startActivity(intent);
  6. } else {
  7. // The required application is not installed
  8. }

Summarize

After reading the PackageManager code, I found that you can also use the packageManager.queryIntentActivities() method to determine whether there is an application in the system that can parse the specified Intent.

  1. public boolean isAvailable(Context context, Intent intent) {
  2. PackageManager packageManager = context.getPackageManager();
  3. List list = packageManager.queryIntentActivities(intent,
  4. PackageManager.MATCH_DEFAULT_ONLY);
  5. return list.size () > 0 ;
  6. }

So, to sum up:

  • Method 1: PackageManager.getLaunchIntentForPackage(), directly determine whether the returned Intent is empty;
  • Method 2: Intent.setComponent(), use Intent.resolveActivityInfo() or packageManager.queryIntentActivities();
  • Method 3: Implicit start, using Intent.resolveActivity(), Intent.resolveActivityInfo(), packageManager.queryIntentActivities().

<<:  The third round of 51CTO developer community administrator recruitment has been successfully completed

>>:  Teach you step by step to publish your own CocoaPods open source library

Recommend

How to make products to stimulate users' desire to spread the word?

In the era of social dividends, the reason why th...

The correct approach to enterprise short video operation

First of all, for enterprises, it is obviously no...

Practical Tips: Four New Trends in Mobile Game Promotion in 2015

Last week, AppLift attended PGConnects in London,...

Overseas promotion: business model for products exported overseas!

The overseas market has a large user base, and th...

Analyzing the strategy of building WeChat self-media!

There is a saying in the Internet circle: WeChat ...

【Android】Implement the auto-complete function for search

Source code introduction Using Sqlite fuzzy query...

How does NetEase Yanxuan create popular products and what is the logic?

The full text will cover some of Yanxuan’s models...

How to bid and match Google/Baidu SEM keywords?

Bidding and matching methods are the two most imp...

What is SEM Marketing? What are the advantages of SEM?

Everyone knows that there are many ways of online...

Event Operations: Avoid These 12 Pitfalls for Beginners

Regarding event operations , this article summari...

The universal formula for product user retention!

Retention is the heart of a product. It is foolis...

Marketing Promotion: Why didn’t “A Bucket” go viral?

Jia Zhangke's short film "A Bucket"...