解决方案 »

  1.   

    QQ:2270967866  和服务邮箱:  [email protected]
      

  2.   

    没有试过,能给段代码吗?我是通过这段代码获取隐藏函数的:
    public static void printTelephonyManagerMethodNamesForThisDevice(
    Context context) { TelephonyManager telephony = (TelephonyManager) context
    .getSystemService(Context.TELEPHONY_SERVICE);

    Class<?> telephonyClass;
    try {
    telephonyClass = Class.forName(telephony.getClass().getName());
    Method[] methods = telephonyClass.getMethods();
    for (int idx = 0; idx < methods.length; idx++) { Log.i("",
    "\n" + methods[idx] + " declared by "
    + methods[idx].getDeclaringClass());
    }


    } catch (ClassNotFoundException e) {
    e.printStackTrace();
    }
    }
      

  3.   

    http://mp.weixin.qq.com/s?__biz=MzA4ODkwNjMwOA==&mid=201053405&idx=2&sn=39d18278d8331985dd8dfdd91783c60b&scene=1&from=singlemessage&isappinstalled=0#rd看看这个文章哈  
    自己反编译下  先看看