是否有可能在Android中捕获MMI结果? 我需要做一些事情,比如保持,合并呼叫等等,因为android中唯一的电话事件是NEW_OUTGOING_CALL,RINGING,OFFHOOK和IDLE,当我拨打任何MMI代码(如Held Code)时,我需要得到结果。 有可能吗?
对我来说,最好的解决方案是找到一些方法来发现传出呼叫何时实际连接。也许有人找到了解决办法吗? 我在阅读系统日志(LogCat)和搜索确定字符串的问题上取得了一些进展,但似乎日志在模型和SO版本之间有所不同,所以这不是一致的方法。
感谢您的帮助!
答案 0 :(得分:0)
也许你可以使用RIL(无线电接口层)获得它
尝试类似:
1) adb device shell
2) logcat -b radio
答案 1 :(得分:0)
//导航到您在拨号盘中拨打*#06#的页面,然后在下面执行jar以获取IMEI结果
import com.android.uiautomator.core.UiObject;
import com.android.uiautomator.testrunner.UiAutomatorTestCase;
import com.android.uiautomator.core.UiSelector;
import com.android.uiautomator.core.UiObjectNotFoundException;
import com.android.uiautomator.core.UiScrollable;
import android.util.Log;
public class SIM_Info_Reader_png extends UiAutomatorTestCase{
public void getPromptedIMEI() throws UiObjectNotFoundException {
UiObject list = new UiObject(new UiSelector().resourceId("android:id/text1"));
int i = 0;
System.out.println("IMEI=" + list.getText());
}
}