How to properly use reflection to access hidden methods in Telephony Manager

13,464

Solution 1

You need an instance of the class you wish to operate on - an object of that type that has already been created.

You pass that to setLine1Number.invoke()

For example, if we were dealing with the Integer class you'd say:

Integer i = new Integer(5);
...
Object TestReturn = someIntegerMethod.invoke(i, arglist);

Solution 2

You must create an instance of GSMPhone (classToInvestigate). Here is a start:

Class commandsInterface = Class.forName("com.android.internal.telephony.CommandsInterface");
Class phoneNotifier = Class.forName("com.android.internal.telephony.PhoneNotifier");
Constructor constructor = classToInvestigate.getConstructor(Context.class, commandsInterface, phoneNotifier);

// This creation of newInstance will have to be modified depending on NullPointerExceptions.
// Will probably have to pass in context, as well as instantiate CommandsInterface and PhoneNotifier in a similar fashion and then inject them as well.
Object newInstance = constructor.newInstance(context, null, null);

setLine1Number.invoke(newInstance, arglist);
Share:
13,464
Dave
Author by

Dave

Computer Engineer. Currently working with the Android OS.

Updated on July 30, 2022

Comments

  • Dave
    Dave almost 2 years

    I'm not sure if I'm having trouble with Reflection itself, or the method I'm trying to obtain.

    What I'd like to do is call the function setLine1Number from the class:

    com.android.internal.telephony.gsm.GSMPhone
    

    So that I can have my number properly inserted into my phone as it is not required to be in my SIM. Therefore I want to be able to call the function getLine1Number and have it return the same number that I set.

    Reflection appears the only way to be able to use this function as it is not in the public API.

    I've written this, but keep getting an illegal argument exception. Here is my code:

    String className = "com.android.internal.telephony.gsm.GSMPhone";
    Class classToInvestigate = Class.forName(className);
    
    Object arglist[] = new Object[3];
    arglist[0] = new String("Phone Number");
    arglist[1] = new String ("16035552412"); // Not a real phone number
    arglist[2] = null;
    
    Class[] paramTypes = new Class[3];
    paramTypes[0] = String.class;
    paramTypes[1] = String.class;
    paramTypes[2] = Message.class;
    Method setLine1Number = classToInvestigate.getMethod("setLine1Number", paramTypes);
    setLine1Number.setAccessible(true);
    
    Object TestReturn = setLine1Number.invoke(classToInvestigate, arglist); // Problem is here. Not sure how to properly do this. 
    

    Now at this point, I would like if I could call

    TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    String PhoneNumber2 =  telephonyManager.getLine1Number();
    

    and have it return the number that I've input. But as I said illegal argument exception, and I'm not sure exactly how to solve this. Any help appreciated. I am still new to reflection so this might be a simple issue.

    Here is the error log:

    Error Log


    Something else I forgot to mention is that I've used the following code to check that this method really exists in the class file:

            Method[] checkMethod = classToInvestigate.getDeclaredMethods();
    
            Test = new String[checkMethod.length];
            int i = 0;
            for(Method m : checkMethod)  
            {  
                // Found a method m  
                Test[i] = m.getName();
                i++;
            }  
    

    And the method setLine1Number was returned in the array. So I'm fairly confident it is there and I can use it somehow.

  • Dave
    Dave about 12 years
    Thanks for the quick reply! This is likely the part I'm confused about. What do you mean by object of the type you want to call the method on? Do you perhaps have an example?
  • Dave
    Dave about 12 years
    I can't find any good examples for this, as all the examples I've found call classes that the user has defined as opposed to this class which is only accessible through reflection.
  • Dave
    Dave about 12 years
    Thanks for the reply! Ok, I now understand that I need to pass in an instance of the class I'd like to operate on. Any idea how could I create an instance of classToInvestigate ?
  • Dave
    Dave about 12 years
    Thanks Vincent for your reply. I am attempting to try an get an instance of this, but am not having any luck. If you have any more direction on this, that would be really good. Thanks for any help.
  • Dave
    Dave over 11 years
    Hey Jason, Thanks for your response. I've tried your code by I keep getting an InstantiationException on line 3. Any ideas?