Android launches another program in one application programmer

Source: Internet
Author: User

In general, we know that another app's package name and mainactivity name can be started directly from the following code:

Intent Intent = new Intent (intent.action_main);
Intent.addcategory (Intent.category_launcher);
ComponentName cn = New ComponentName (PackageName, className);
Intent.setcomponent (CN);
StartActivity (Intent);

But more often, we do not know the application Startup activity class name, but only know the package name, we can use the Resolveinfo class to get the class name of the startup acitivty

Here is the implementation code:
private void Openapp (String packagename) {
PackageInfo pi = Getpackagemanager (). Getpackageinfo (PackageName, 0);

Intent resolveintent = new Intent (intent.action_main, NULL);
Resolveintent.addcategory (Intent.category_launcher);
Resolveintent.setpackage (Pi.packagename);

List<resolveinfo> apps = pm.queryintentactivities (resolveintent, 0);

ResolveInfo ri = Apps.iterator (). Next ();
if (ri = null) {
String PackageName = ri.activityInfo.packageName;
String className = ri.activityInfo.name;

Intent Intent = new Intent (intent.action_main);
Intent.addcategory (Intent.category_launcher);

ComponentName cn = New ComponentName (PackageName, className);

Intent.setcomponent (CN);
StartActivity (Intent);
}

Android launches another program in one application programmer

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.