80,471
社区成员




//.. get the ITelephony with reflector
Method getITelephonyMethod = TelephonyManager.
class .getDeclaredMethod( "getITelephony" , (Class[]) null );
getITelephonyMethod.setAccessible( true );
mITelephony = (ITelephony) getITelephonyMethod.invoke(mTelephonyManager, (Object[]) null );
//end current call
mITelephony.endCall();