Android Question simulate click bluetooth earphone hangup button. Is it possible ?

palmzac

Active Member
Licensed User
Longtime User
Hi,

There is a problem that some phone cannot hangup by standard EndCall function. I want to simulate it to solve the problem. Is it possible ?

My code:
<code>
Dim r As Reflector
r.Target = r.GetContext
Dim TelephonyManager, TelephonyInterface As Object
TelephonyManager = r.RunMethod2("getSystemService", "phone", "java.lang.String")
r.Target = TelephonyManager
TelephonyInterface = r.RunMethod("getITelephony")
r.Target = TelephonyInterface
r.RunMethod("endCall")

</code>
 
Top