我想在几秒钟后结束新的拨出电话.这是我的代码:
public class phonecalls extends Activity {
ComponentName cn;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
call();
}
private void call() {
try {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
cn = new ComponentName(getApplicationContext(), Receiver.class);
} catch (ActivityNotFoundException activityException) {
Log.e("dialing-example", "Call failed", activityException);
}
}
}
我的接收器类是:
public class Receiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_NEW_OUTGOING_CALL)) {
setResultData(null);
}
}
}
我无法中止拨打电话.我是Android的新手,似乎无法让这个工作.
解决方法:
您无法在Android中结束通话.在您调用startActivity(callIntent)时,您将放弃对本机调用者应用程序的控制.现在只能通过电话应用程序中止呼叫.
除了你开始通话后的代码没有多大意义.您没有对正在创建的ComponentName执行任何操作,因此永远不会调用Receiver的onReceive方法.此外,如果接收器被调用,onReceive方法中的代码将不会做任何改变电话呼叫状态的事情.