Check whether a method exists within its class. An example for this method is:
boolean methodExists = InternalAccessor.isMethodExists("android.content.Intent", "putExtra", String.class, Integer.class);
if (methodExists)
{
...
}
has two types of parameter, i.e.
. If you look at the source code, you'll see that the real method is:
.