gpt4 book ai didi

android - 如何以编程方式最小化电话调用?

转载 作者:行者123 更新时间:2023-11-29 01:49:32 24 4
gpt4 key购买 nike

我有一个可以调用“帮助调用”的应用程序。我希望当有人接听电话时,电话在后台运行。那么有没有一种方法可以最大限度地减少电话调用,同时返回应用程序?

最佳答案

你可以试试这样的东西

private class CallStateListener extends PhoneStateListener {

@Override
public void onCallStateChanged(int state, String incomingNumber) {
switch (state) {
case TelephonyManager.CALL_STATE_RINGING: {
break;
}
case TelephonyManager.CALL_STATE_OFFHOOK: {
try {
//THIS WILL SIMULATE A HOME BUTTON PRESS
//Effectively Minimizing the In Call Screen
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
activity.startActivity(startMain);

//Now that you are home, and your In Call Screen is minimized
//move back to your application
} catch (Exception e) {
e.printStackTrace();
}
break;
}
}
}
}

关于android - 如何以编程方式最小化电话调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19093373/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com