1

我有一个要求,我需要为 Nexus S 开发一个 Android 应用程序,以便让所有可用的网络运营商围绕我。

我一直在跟进很多博客来完成这项工作。

首先它是一个内部/隐藏的 API

所以我就按照这个方法来调用它。

TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
telephonyManagerClass = Class.forName(telephonyManager.getClass().getName());
Method getITelephonyMethod = telephonyManagerClass.getDeclaredMethod("getITelephony");
getITelephonyMethod.setAccessible(true);
ITelephonyStub = getITelephonyMethod.invoke(telephonyManager);
ITelephonyClass = Class.forName(ITelephonyStub.getClass().getName());

setPrefNetmethod = ITelephonyClass.getDeclaredMethod(
                    "getAvailableNetworks", new Class[] { Message.class });

Message response = Message.obtain();
setPrefNetmethod.setAccessible(false);

setPrefNetmethod.invoke(ITelephonyStub, new Object[] { network_mode, response });

但我总是得到 setPrefNetmethod = null ......

我什<uses-permission android:name="android.permission.READ_PHONE_STATE" />至在android清单中设置了......

任何帮助对我来说都会很棒。

4

1 回答 1

2

只是想看看 ITelephony 对象上有哪些方法可用,而不是使用 getDeclaredMethod() 试试这个:

Method[] methods = ITelephonyClass.getDeclaredMethods();
for (Method method : methods) {
    Log.i("Method", "Method name is: "+method.getName());
}

这应该记录可用方法的列表。也许有一个看起来会帮助你。找到所需的方法后,您还可以调用 method.getParameterTypes() ,它将返回一个类名数组。这将告诉您该方法需要哪些参数。

但是,您可能无法按照自己的意愿进行操作,因为每个制造商都可以根据自己的需要自由更改这些内容。

于 2012-05-11T14:53:00.563 回答