我正在尝试为 Android 应用程序创建一个自定义呼叫屏幕,目前我的应用程序正在使用默认呼叫屏幕,但我想设置自己的呼出呼叫屏幕。
我的主要布局有一个类似手机的键盘来拨打号码,我正在使用Intent.ACTION_CALL
它来呼叫默认呼叫屏幕。
/**
* Starts the native phone call activity
*/
private void dialNumber() {
String number = mPhoneNumberField.getText().toString();
if (number.length() > 0) {
startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
+ number)));
}
}
请帮我自定义通话屏幕。