Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.content.pm.PackageManager;

public class Main {
    public static final String CLIENT_PACKAGE_WEIBO = "com.sina.weibo";

    public static boolean isWeiBoInstalled(Context context) {
        return appInstalledOrNot(CLIENT_PACKAGE_WEIBO, context);
    }

    private static boolean appInstalledOrNot(String uri, Context context) {

        PackageManager pm = context.getPackageManager();
        boolean app_installed;
        try {
            pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
            app_installed = true;
        } catch (PackageManager.NameNotFoundException e) {
            app_installed = false;
        }
        return app_installed;
    }
}