1. ホーム
  2. android

[解決済み] Android通知音

2022-04-25 07:19:28

質問

新しいNotificationCompatビルダーを使っていますが、通知音を鳴らすことができません。バイブレーションとライトは点滅します。アンドロイドのドキュメントには、スタイルを設定するように書かれていますが、私はそれを実行しました。

builder.setStyle(new NotificationCompat.InboxStyle());

でも、音が出ない?

コード全文です。

NotificationCompat.Builder builder =  
        new NotificationCompat.Builder(this)  
        .setSmallIcon(R.drawable.ic_launcher)  
        .setContentTitle("Notifications Example")  
        .setContentText("This is a test notification");  


Intent notificationIntent = new Intent(this, MenuScreen.class);  

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent,   
        PendingIntent.FLAG_UPDATE_CURRENT);  

builder.setContentIntent(contentIntent);  
builder.setAutoCancel(true);
builder.setLights(Color.BLUE, 500, 500);
long[] pattern = {500,500,500,500,500,500,500,500,500};
builder.setVibrate(pattern);
builder.setStyle(new NotificationCompat.InboxStyle());
// Add as notification  
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
manager.notify(1, builder.build());  

解決方法は?

以前のコードに欠けていたもの。

Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(alarmSound);