Obtain the Application List, open the application, and open the application attributes.

Source: Internet
Author: User

1. Get the application

View code

        mPackageManager = getPackageManager();        mAllPkgs = mPackageManager                .getInstalledPackages(mPackageManager.GET_ACTIVITIES);

 

2. Open the application. If the application already exists in a task, switch to the task where the application is located. If the application does not exist, open the application again.

View code

    @Override    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {        PackageInfo packageInfo = (PackageInfo) arg0.getItemAtPosition(arg2);        boolean flg = false;        List<RecentTaskInfo> mTasks = mActivityManager.getRecentTasks(MAX_TASK,                0);        if (mTasks != null) {            for (RecentTaskInfo rti : mTasks) {                if (rti.baseIntent.getComponent().getPackageName()                        .equals(packageInfo.packageName)) {                    startActivity(rti.baseIntent);                    flg = true;                    break;                }            }        }        if (!flg) {            Intent intent = mPackageManager                    .getLaunchIntentForPackage(packageInfo.packageName);            startActivity(intent);        }    }

 

3. open application properties (API level: 9)

View code

        PackageInfo packageInfo = (PackageInfo) arg0.getItemAtPosition(arg2);        Intent intent = new Intent(                Settings.ACTION_APPLICATION_DETAILS_SETTINGS,                Uri.parse("package:" + packageInfo.packageName));        startActivity(intent);

 

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.