如何以正确的方式设置通知声音持续时间android

时间:2017-02-27 15:18:31

标签: android notifications android-notifications

我是android的新手。我正在尝试创建一个自定义声音持续时间的通知。我见过很多带有这个功能的应用程序,但我无法理解如何以最有用的方式制作它。

对于我的通知,我使用BroadcastReceiver

public class NotificationAlarmReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {

setNotification(context);

}

 private void setNotification(Context context) {
    Intent intent = new Intent(context, MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP |
            Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
    PendingIntent pendingIntent = PendingIntent.getActivity(context,
            (int) System.currentTimeMillis(), intent, 0);
    Notification notification = new Notification.Builder(context).
            setTicker("Hi!").
            setAutoCancel(true).
            setContentTitle("Bla bla lba!").
            setContentText("Hi hi!").
            setSmallIcon(R.mipmap.ic_launcher).
            setContentIntent(pendingIntent).build();

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

    notification.defaults |= Notification.DEFAULT_SOUND;
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notification.defaults |= Notification.DEFAULT_LIGHTS;

    notification.flags |= Notification.FLAG_INSISTENT;

    notificationManager.notify((int) System.currentTimeMillis(), notification);
}
}

谢谢!

2 个答案:

答案 0 :(得分:1)

我没有找到任何方法来控制声音持续时间,但您可以使用以下代码将AudioManager.STREAM_NOTIFICATION静音: -

final AudioManager am = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
am.setStreamMute(AudioManager.STREAM_NOTIFICATION, true or false);

在通知声音总持续时间过后,不要忘记取消静音。

答案 1 :(得分:0)

我找到了一个对我有用的解决方案

因此,您应该启动一个可以根据需要休眠的线程,然后将当前通知替换为相同但没有任何声音/振动的通知。

new Thread() {
            public void run() {
                try {
                    sleep(duration * DateUtils.SECOND_IN_MILLIS);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                notificationManager.cancel(id);

                //start the same notification without sound
                soundlessNotification(context);
            }
        }.start();