LIB用於攔截USSDINE應用程序允許用戶查詢USSD代碼(例如發送 *112#以查詢Mobifone/vietnam的付費後賬單)
釋放USSD的自由
此應用程序允許用戶查詢USSD代碼(例如發送 *112#以查詢Mobifone/越南的付費後計費),並攔截響應(防止顯示Android的默認USSD響應對話框)。
它用作呼叫限制的庫:https://play.google.com/store/apps/details?id=com.hit.calllimilit
---------------------------------------------------------------------------
對於想要進行USSD攔截的開發人員,如上所述:
1。安裝此應用
2。重新啟動電話
3。發送廣播意圖:
intent ussdintent = new Intent(“ send_uc_ussd_with_result”);
ussdintent.putextra(USSD_NUMBER,編號);
4。註冊一個操作的接收器:“ com.hit.ussdlib.service.ussd_response_action”
5。獲取響應:字符串響應= intent.getStringExtra(“ com.hit.ussdlib.service.message”);
---------------------------------------------------------------------------