สั่นและเสียงเริ่มต้นในการแจ้งเตือน


94

ฉันกำลังพยายามรับการสั่นและเสียงเตือนเริ่มต้นเมื่อมีการแจ้งเตือนเข้ามา แต่จนถึงขณะนี้โชคไม่ดี ฉันคิดว่ามันเกี่ยวข้องกับวิธีที่ฉันตั้งค่าเริ่มต้น แต่ฉันไม่แน่ใจว่าจะแก้ไขอย่างไร ความคิดใด ๆ ?

public void connectedNotify() {
    Integer mId = 0;
    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_notify)
            .setContentTitle("Device Connected")
            .setContentText("Click to monitor");

    Intent resultIntent = new Intent(this, MainActivity.class);

    TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
    stackBuilder.addParentStack(MainActivity.class);
    stackBuilder.addNextIntent(resultIntent);
    PendingIntent resultPendingIntent =     
          PendingIntent.getActivity(getApplicationContext(), 
          0, 
          resultIntent,  
          PendingIntent.FLAG_UPDATE_CURRENT);
    mBuilder.setContentIntent(resultPendingIntent);
    mBuilder.setOngoing(true);
    Notification note = mBuilder.build();
    note.defaults |= Notification.DEFAULT_VIBRATE;
    note.defaults |= Notification.DEFAULT_SOUND;
    NotificationManager mNotificationManager =
        (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify(mId, note);

}

3
คำตอบทั้งหมดเป็นการย้ำโค้ดบางส่วนที่คุณมีอยู่แล้วและไม่มีคำตอบใดที่ตอบคำถามในความคิดของฉัน รหัสของคุณดูดี AFAICT เป็นไปได้มากว่าคุณจะพลาดandroid.permission.VIBRATEใน AndroidManifest.xml
Olaf Dietsche

สำหรับผู้ที่อาจใช้แนวทางแก้ไขในชุดข้อความนี้และยังไม่มีการสั่นสะเทือนในการแจ้งเตือนคุณอาจต้องเปิดใช้งานการสั่นของช่องการแจ้งเตือนของคุณก่อน ดูสิ่งนี้: stackoverflow.com/a/47646166/8551764
Mostafa Arian Nejad

คำตอบ:


205

รหัสจำลองบางอย่างอาจช่วยคุณได้

   private static NotificationCompat.Builder buildNotificationCommon(Context _context, .....) {
            NotificationCompat.Builder builder = new NotificationCompat.Builder(_context)
            .setWhen(System.currentTimeMillis()).......;
     //Vibration
        builder.setVibrate(new long[] { 1000, 1000, 1000, 1000, 1000 });

     //LED
        builder.setLights(Color.RED, 3000, 3000);

     //Ton
        builder.setSound(Uri.parse("uri://sadfasdfasdf.mp3"));

    return builder;
   }

เพิ่มสิทธิ์ด้านล่างสำหรับการสั่นสะเทือนในAndroidManifest.xmlไฟล์

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

115
vibrateคุณลักษณะ+1 ต้อง<uses-permission android:name="android.permission.VIBRATE" />ได้รับอนุญาต
ashakirov

1
ในบางกรณีคุณควรใช้รูปแบบ argb สี hex เช่น 0xffffffff แทนสีขาวเนื่องจากมีโอกาสเล็กน้อยที่อุปกรณ์ของผู้ใช้จะใช้สี (RGB) สำหรับพารามิเตอร์ ARGB และคุณจะได้สีที่ไม่ถูกต้อง สิ่งนี้เกิดขึ้นกับฉัน
Beto Caldas

55
ตอนนี้การสั่นสะเทือนมีความล่าช้า 1,000 มิลลิวินาที หากคุณตั้งค่าตัวแรกเป็น 0 ระบบจะดับลงทันที มันเป็นรูปแบบ {delay, vibrate, sleep, vibrate, sleep}
ทอม

11
ฉันไม่จำเป็นต้องเพิ่ม<uses-permission android:name="android.permission.VIBRATE" />ในการทำงาน
Iqbal

1
ใครรู้วิธีใช้ setSound บน API 26 บ้าง?
Rodrigo Manguinho

61

ส่วนขยายสำหรับคำตอบของ TeeTracker

เพื่อรับเสียงแจ้งเตือนเริ่มต้นคุณสามารถทำได้ดังนี้

NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_notify)
            .setContentTitle("Device Connected")
            .setContentText("Click to monitor");

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

ซึ่งจะทำให้คุณมีเสียงแจ้งเตือนเริ่มต้น


36

การแจ้งเตือน สั่น

mBuilder.setVibrate(new long[] { 1000, 1000});

เสียง

mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);

สำหรับตัวเลือกเสียงเพิ่มเติม


2
สำหรับเครื่องสั่นอย่าลืมรวมไว้<uses-permission android:name="android.permission.VIBRATE" />ใน AndroidManifest.xml ของคุณ
Aaron Esau

การสั่นสะเทือนนี้ไปนานแค่ไหน? หรือจะสั่นเพียงครั้งเดียว?
Zapnologica

13

มันใช้งานได้ดีสำหรับฉันคุณสามารถลองได้

 protected void displayNotification() {

        Log.i("Start", "notification");

      // Invoking the default notification service //
        NotificationCompat.Builder  mBuilder =
                new NotificationCompat.Builder(this);
        mBuilder.setAutoCancel(true);

        mBuilder.setContentTitle("New Message");
        mBuilder.setContentText("You have "+unMber_unRead_sms +" new message.");
        mBuilder.setTicker("New message from PayMe..");
        mBuilder.setSmallIcon(R.drawable.icon2);

      // Increase notification number every time a new notification arrives //
        mBuilder.setNumber(unMber_unRead_sms);

      // Creates an explicit intent for an Activity in your app //

        Intent resultIntent = new Intent(this, FreesmsLog.class);

        TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
        stackBuilder.addParentStack(FreesmsLog.class);

      // Adds the Intent that starts the Activity to the top of the stack //
        stackBuilder.addNextIntent(resultIntent);
        PendingIntent resultPendingIntent =
                stackBuilder.getPendingIntent(
                        0,
                        PendingIntent.FLAG_UPDATE_CURRENT
                );
        mBuilder.setContentIntent(resultPendingIntent);

      //  mBuilder.setOngoing(true);
        Notification note = mBuilder.build();
        note.defaults |= Notification.DEFAULT_VIBRATE;
        note.defaults |= Notification.DEFAULT_SOUND;

        mNotificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      // notificationID allows you to update the notification later on. //
        mNotificationManager.notify(notificationID, mBuilder.build());

    }

10

นี่เป็นวิธีง่ายๆในการโทรแจ้งเตือนโดยใช้การสั่นและเสียงเริ่มต้นจากระบบ

private void sendNotification(String message, String tick, String title, boolean sound, boolean vibrate, int iconID) {
    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);
    Notification notification = new Notification();

    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this);

    if (sound) {
        notification.defaults |= Notification.DEFAULT_SOUND;
    }

    if (vibrate) {
        notification.defaults |= Notification.DEFAULT_VIBRATE;
    }

    notificationBuilder.setDefaults(notification.defaults);
    notificationBuilder.setSmallIcon(iconID)
            .setContentTitle(title)
            .setContentText(message)
            .setAutoCancel(true)
            .setTicker(tick)
            .setContentIntent(pendingIntent);

    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

เพิ่มการอนุญาตการสั่นหากคุณจะใช้:

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

โชคดี,'.


มีใครบอกฉันได้ไหมว่าทำไมการสั่นไม่ทำงานเมื่อมีสายเข้า หรือเราสามารถแจ้งเตือนเพื่อบังคับให้สั่นแม้ในโทรศัพท์อยู่ระหว่างการโทร

มันช่วยฉัน NotificationBuilder.setDefaults (notification.defaults);
Saveen

@ user526206 ฉันไม่รู้ ฉันไม่เคยทดสอบว่า คุณสามารถเปิดคำถามใหม่ได้เนื่องจากไม่มีพฤติกรรมการแจ้งเตือนใด ๆ
Maher Abuthraa

7

ฉันใช้รหัส followung และมันใช้งานได้ดีสำหรับฉัน

private void sendNotification(String msg) {
    Log.d(TAG, "Preparing to send notification...: " + msg);
    mNotificationManager = (NotificationManager) this
            .getSystemService(Context.NOTIFICATION_SERVICE);

    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, MainActivity.class), 0);

    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
            this).setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("GCM Notification")
            .setAutoCancel(true)
            .setDefaults(Notification.DEFAULT_ALL)
            .setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
            .setContentText(msg);

    mBuilder.setContentIntent(contentIntent);
    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    Log.d(TAG, "Notification sent successfully.");
}


1

ในการรองรับเวอร์ชัน SDK> = 26 คุณควรสร้าง NotificationChanel และตั้งค่ารูปแบบการสั่นและเสียงที่นั่น มีตัวอย่างโค้ด Kotlin:

    val vibrationPattern = longArrayOf(500)
    val soundUri = "<your sound uri>"

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            val notificationManager =    
                 getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
            val attr = AudioAttributes.Builder()
                        .setUsage(AudioAttributes.USAGE_ALARM)
                        .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
                        .build()
            val channelName: CharSequence = Constants.NOTIFICATION_CHANNEL_NAME
            val importance = NotificationManager.IMPORTANCE_HIGH
            val notificationChannel =
                NotificationChannel(Constants.NOTIFICATION_CHANNEL_ID, channelName, importance)
                notificationChannel.enableLights(true)
                notificationChannel.lightColor = Color.RED
                notificationChannel.enableVibration(true)
                notificationChannel.setSound(soundUri, attr)
                notificationChannel.vibrationPattern = vibrationPattern
                notificationManager.createNotificationChannel(notificationChannel)
    }

และนี่คือตัวสร้าง:

 with(NotificationCompat.Builder(applicationContext, Constants.NOTIFICATION_CHANNEL_ID)) {
        setContentTitle("Some title")
        setContentText("Some content")
        setSmallIcon(R.drawable.ic_logo)
        setAutoCancel(true)    
        setVibrate(vibrationPattern)
        setSound(soundUri)
        setDefaults(Notification.DEFAULT_VIBRATE)
        setContentIntent(
            // this is an extension function of context you should build
            // your own pending intent and place it here
            createNotificationPendingIntent(
                Intent(applicationContext, target).apply {
                    flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
                }
            )
        )

        return build()
    }

ให้แน่ใจว่าคุณAudioAttributesจะเลือกไปทางขวาเพื่ออ่านรายละเอียดเพิ่มเติมที่นี่


1

สำหรับ Kotlin คุณสามารถลองสิ่งนี้

var builder = NotificationCompat.Builder(this,CHANNEL_ID)
     .setVibrate(longArrayOf(1000, 1000, 1000, 1000, 1000))
     .setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.