gpt4 book ai didi

android - 如何通过点击通知调用电话

转载 作者:行者123 更新时间:2023-11-30 00:55:12 26 4
gpt4 key购买 nike

我创建了一个通知,我想在点击它时调用电话,但我不知道该怎么做,我试图找到答案,但我找不到。

notification.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
createNotification(v);
}
});


public void createNotification(View view) {
Intent intent = new Intent();
PendingIntent pIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);

Notification noti = new Notification.Builder(MainActivity.this)
.setContentTitle("Make a Call")
.setContentText("0390000000")
.setSmallIcon(R.drawable.phone)

.setContentIntent(pIntent).getNotification();
noti.flags |= Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

notificationManager.notify(0, noti);
}

我也有这个但是我不知道怎么把它们放在一起

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("tel: 0390000000")));

上面的代码只打开了拨号器,但我想直接调用那个号码。

感谢任何帮助。

M.

最佳答案

尝试

Intent notificationIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));


notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP);

PendingIntent intent = PendingIntent.getActivity(context, 0,
notificationIntent, 0);

同时在 list 文件中添加权限

 <uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>   

关于android - 如何通过点击通知调用电话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40287615/

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