android设置默认短信应用(非弹框)

 public static final String CLASS_SMS_MANAGER = "com.android.internal.telephony.SmsApplication";
    public static final String METHOD_SET_DEFAULT = "setDefaultApplication";

    private void setDefaultSms() {
        try {
            Class smsClass = Class.forName(CLASS_SMS_MANAGER);
            Method method = smsClass.getMethod(METHOD_SET_DEFAULT, String.class, Context.class);
            method.invoke(null, getPackageName(), this);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }



基本的默认的设置(设置广播之类的),,其他文章都有了,这里就不重复了

你可能感兴趣的:(framework)