码迷,mamicode.com
首页 > 其他好文 > 详细

利用反射拨号

时间:2015-03-16 22:38:29      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

private void dial(String number) {
  Class<TelephonyManager> c = TelephonyManager.class;
  Method getITelephonyMethod = null;
  try {
   getITelephonyMethod = c.getDeclaredMethod("getITelephony",
     (Class[]) null);
   getITelephonyMethod.setAccessible(true);
  } catch (SecurityException e) {
   e.printStackTrace();
  } catch (NoSuchMethodException e) {
   e.printStackTrace();
  }

  try {
   TelephonyManager tManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
   Object iTelephony;
   iTelephony = (Object) getITelephonyMethod.invoke(tManager,
     (Object[]) null);
   Method dial = iTelephony.getClass().getDeclaredMethod("dial",
     String.class);
   dial.invoke(iTelephony, number);
  } catch (IllegalArgumentException e) {
   e.printStackTrace();
  } catch (IllegalAccessException e) {
   e.printStackTrace();
  } catch (SecurityException e) {
   e.printStackTrace();
  } catch (NoSuchMethodException e) {
   e.printStackTrace();
  } catch (InvocationTargetException e) {
   e.printStackTrace();
  }
 }

利用反射拨号

标签:

原文地址:http://www.cnblogs.com/Dbzzcz/p/4342841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!