重复通知 [英] Repeating notification

查看:128
本文介绍了重复通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试设置一个每天固定时间重复的通知。

I'm trying to set a notification that is repeated each day at a fixed hour.

我可以通过单击列表中的项目来设置通知(但这并不是很有趣...)
我已经尝试了几次东西,但我仍然无法使其自动显示或每天显示...

I'm able to set a notification by clicking on an item in a list (but that's not really interesting...) I've tried several things but I still can't make it appear automatically nor daily...

这是我到目前为止所做的:

Here is what I've done so far:

public class main extends Activity implements PersonneAdapterListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ArrayList<com.example.joris.list3.Personne> listP = com.example.joris.list3.Personne.getAListOfPersonne();
    com.example.joris.list3.PersonneAdapter adapter = new com.example.joris.list3.PersonneAdapter(this, listP);

    adapter.addListener(this);

    ListView list = (ListView)findViewById(R.id.ListView01);

    list.setAdapter(adapter);

    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.HOUR_OF_DAY, 8);
    calendar.set(Calendar.MINUTE, 30);
    calendar.set(Calendar.SECOND, 0);
    Intent intent1 = new Intent(main.this, NotifyService.class);
    PendingIntent pendingIntent = PendingIntent.getBroadcast(main.this, 0,intent1, PendingIntent.FLAG_UPDATE_CURRENT);
    AlarmManager am = (AlarmManager) main.this.getSystemService(main.this.ALARM_SERVICE);
    am.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), AlarmManager.INTERVAL_DAY, pendingIntent);
}

@Override
public void onClickNom(com.example.joris.list3.Personne item, int position) {
    Builder builder = new AlertDialog.Builder(this);
    builder.setTitle("Personne");
    builder.setMessage("Vous avez cliqué sur : " + item.prenom);
    builder.setPositiveButton("OK", null);
    builder.show();

    //Building the Notification
    int NOTIFICATION_ID =1;
    Context context = getApplicationContext();
    NotificationCompat.Builder builder1 = new NotificationCompat.Builder(context);
    builder1.setSmallIcon(R.drawable.eeo);
    builder1.setContentTitle("Green Reminder");
    builder1.setContentText(item.prenom);

    NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    notificationManager.notify(NOTIFICATION_ID, builder1.build());
}}

这是我的另一堂课:

public class NotifyService extends BroadcastReceiver {

public void onReceive (Context context, Intent intent){

            long when = System.currentTimeMillis();

            Intent notificationIntent = new Intent(context, main.class);
            notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

            PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
                    notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);


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

            int NOTIFICATION_ID=1;
            NotificationCompat.Builder mNotifyBuilder = new NotificationCompat.Builder(context)
                    .setSmallIcon(R.drawable.eeo)
                    .setContentTitle("Green Reminder")
                    .setContentText("test")
                    .setSound(alarmSound)
                    .setAutoCancel(true)
                    .setWhen(when)
                    .setContentIntent(pendingIntent)
                    .setVibrate(new long[]{1000, 1000, 1000, 1000, 1000});
    NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    notificationManager.notify(NOTIFICATION_ID, mNotifyBuilder.build());
        }
    }

谢谢

推荐答案

您是否已在清单中设置接收器?
我认为问题是您没有收到Alarmmanager的广播。
尝试添加

Have you set up receiver in manifest? I think the problem is you are not receiving the broadcast from alarmmanager. Try adding

intent.setAction("android.media.action.DISPLAY_NOTIFICATION");
intent.addCategory("android.intent.category.DEFAULT");

到onCreate方法中的intent1。

to intent1 in onCreate method.

还要确保清单中还包含以下内容:

Be sure to have the following in manifest as well:

    <receiver android:name=".NotifyService" >
        <intent-filter>
            <action android:name="android.media.action.DISPLAY_NOTIFICATION" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

这篇关于重复通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆