久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

如何刪除Status?bar?中的未接電話圖標(biāo)

 android之情殤 2012-08-30

如何刪除Status bar 中的未接電話圖標(biāo)

(2011-04-14 16:35:50)
該方法采用反射方式:
private static final String METHOD_GET_ITELEPHONY = "getITelephony";
private static final String METHOD_CANCEL_MISSEDCALLS_NOTIFICATION =                   "cancelMissedCallsNotification";

private void cancelMissedCallsNotification() {
      Object tm = mContext.getSystemService(Context.TELEPHONY_SERVICE);
      Class c = tm.getClass();
      Method getTel = null;

      try {
           getTel = c.getDeclaredMethod(METHOD_GET_ITELEPHONY, (Class[]) null);
       } catch (Exception e) {
       e.printStackTrace();
       }

       getTel.setAccessible(true);
       try {
          Object r = getTel.invoke(tm, null); // ITelephony
          Class rc = r.getClass();
          Method getCan = null;
          getCan = rc.getDeclaredMethod(
                   METHOD_CANCEL_MISSEDCALLS_NOTIFICATION, (Class[]) null);
          Object ro = getCan.invoke(r, null);

        } catch (Exception e) {
         e.printStackTrace();
        }
}

    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多