android在特定时间,如何在Android Oreo的特定时间在Android上发出通知?

我正在寻找一种在“设置”中创建首选项的方法,以便在Android应用中的特定时间(由用户在设置中设置)发送通知.我看过像this这样的不同线程,但是这在Android Oreo中不起作用.

有人可以帮我这个或者指点我一个教程吗?

解决方法:

在查看了不同的帖子和对AlarmManager实现的一些研究后,这对我有用.

这个基础是this帖子和Schedule重复警报Android Documentation.

这是我目前的实施:

我有一个SwitchPreference,而TimePicker实现是Settings

SwitchPreference询问用户是否要启用重复每日通知.

TimePicker设置通知时间.

在MainActivity的OnCreate方法中或者在您阅读SharedPreferences的任何地方执行此操作:

PreferenceManager.setDefaultValues(this, R.xml.preferences, false);

SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);

Boolean dailyNotify = sharedPref.getBoolean(SettingsActivity.KEY_PREF_DAILY_NOTIFICATION, true);

PackageManager pm = this.getPackageManager();

ComponentName receiver = new ComponentName(this, DeviceBootReceiver.class);

Intent alarmIntent = new Intent(this, AlarmReceiver.class);

PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, alarmIntent, 0);

AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);

// if user enabled daily notifications

if (dailyNotify) {

//region Enable Daily Notifications

Calendar calendar = Calendar.getInstance();

calendar.setTimeInMillis(System.currentTimeMillis());

calendar.set(Calendar.HOUR_OF_DAY, sharedPref.getInt("dailyNotificationHour", 7));

calendar.set(Calendar.MINUTE, sharedPref.getInt("dailyNotificationMin", 15));

calendar.set(Calendar.SECOND, 1);

// if notification time is before selected time, send notification the next day

if (calendar.before(Calendar.getInstance())) {

calendar.add(Calendar.DATE, 1);

}

if (manager != null) {

manager.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),

AlarmManager.INTERVAL_DAY, pendingIntent);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {

manager.setExactAndAllowWhileIdle(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);

}

}

//To enable Boot Receiver class

pm.setComponentEnabledSetting(receiver,

PackageManager.COMPONENT_ENABLED_STATE_ENABLED,

PackageManager.DONT_KILL_APP);

//endregion

} else { //Disable Daily Notifications

if (PendingIntent.getBroadcast(this, 0, alarmIntent, 0) != null && manager != null) {

manager.cancel(pendingIntent);

//Toast.makeText(this,"Notifications were disabled",Toast.LENGTH_SHORT).show();

}

pm.setComponentEnabledSetting(receiver,

PackageManager.COMPONENT_ENABLED_STATE_DISABLED,

PackageManager.DONT_KILL_APP);

}

接下来添加实现BroadcastReceiver的AlarmReceiver类,如下所示:

public class AlarmReceiver extends BroadcastReceiver {

@Override

public void onReceive(Context context, Intent intent) {

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(Objects.requireNonNull(context));

SharedPreferences.Editor sharedPrefEditor = prefs.edit();

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

Intent notificationIntent = new Intent(context, MainActivity.class);

notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP

| Intent.FLAG_ACTIVITY_SINGLE_TOP);

PendingIntent pendingI = PendingIntent.getActivity(context, 0,

notificationIntent, 0);

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {

NotificationChannel channel = new NotificationChannel("default",

"Daily Notification",

NotificationManager.IMPORTANCE_DEFAULT);

channel.setDescription("Daily Notification");

if (nm != null) {

nm.createNotificationChannel(channel);

}

}

NotificationCompat.Builder b = new NotificationCompat.Builder(context, "default");

b.setAutoCancel(true)

.setDefaults(NotificationCompat.DEFAULT_ALL)

.setWhen(System.currentTimeMillis())

.setSmallIcon(R.mipmap.ic_launcher_foreground)

.setTicker("{Time to watch some cool stuff!}")

.setContentTitle("My Cool App")

.setContentText("Time to watch some cool stuff!")

.setContentInfo("INFO")

.setContentIntent(pendingI);

if (nm != null) {

nm.notify(1, b.build());

Calendar nextNotifyTime = Calendar.getInstance();

nextNotifyTime.add(Calendar.DATE, 1);

sharedPrefEditor.putLong("nextNotifyTime", nextNotifyTime.getTimeInMillis());

sharedPrefEditor.apply();

}

}

}

如果设备电源关闭或重新启动,系统将关闭AlarmManager,因此在BOOT COMPLETE上再次重新启动它添加此类:

public class DeviceBootReceiver extends BroadcastReceiver {

@Override

public void onReceive(Context context, Intent intent) {

if (Objects.equals(intent.getAction(), "android.intent.action.BOOT_COMPLETED")) {

// on device boot complete, reset the alarm

Intent alarmIntent = new Intent(context, AlarmReceiver.class);

PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, alarmIntent, 0);

AlarmManager manager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);

final SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(Objects.requireNonNull(context));

Calendar calendar = Calendar.getInstance();

calendar.setTimeInMillis(System.currentTimeMillis());

calendar.set(Calendar.HOUR_OF_DAY, sharedPref.getInt("dailyNotificationHour", 7));

calendar.set(Calendar.MINUTE, sharedPref.getInt("dailyNotificationMin", 15));

calendar.set(Calendar.SECOND, 1);

Calendar newC = new GregorianCalendar();

newC.setTimeInMillis(sharedPref.getLong("nextNotifyTime", Calendar.getInstance().getTimeInMillis()));

if (calendar.after(newC)) {

calendar.add(Calendar.HOUR, 1);

}

if (manager != null) {

manager.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),

AlarmManager.INTERVAL_DAY, pendingIntent);

}

}

}

}

最后不要忘记将这些权限添加到AndroidManidest:

并在AndroidManifest中注册您的接收器

android:enabled="false">

如果用户启用了SwitchPreference,则应在TimePicker指定的日期的特定时间设置通知.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/474472.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

6、使用infowindow

ESRI公司提供的infowindow既美观用实用,而且可定制性强,是时时获取信息的好窗口,用好它可以使工作量大大的减少。 他的使用方法介绍如下: 1、 主要属性 Property Type Description anchor String Placement of the InfoWindo…

python中随机输入数字再排序

代码赏析: a[] while True:umber int(input("请输入您要输入的数字:"))if umber 0:breakelse:a.append(umber) a.sort() print(b)

LeetCode 1167. 连接棒材的最低费用(优先队列+贪心)

文章目录1. 题目2. 解题1. 题目 为了装修新房,你需要加工一些长度为正整数的棒材 sticks。 如果要将长度分别为 X 和 Y 的两根棒材连接在一起,你需要支付 X Y 的费用。 由于施工需要,你必须将所有棒材连接成一根。 返回你把所有棒材 sti…

flyme8会更新Android版本吗,魅族17系列升级Flyme 8.1操作系统:终于到Android 10

原标题:魅族17系列升级Flyme 8.1操作系统:终于到Android 10玩懂手机网资讯,根据魅族官方的消息,魅族17系列终于升级至Android 10,将会搭载 Flyme 8.1 操作系统,魅族官方发布消息表示让欢喜的,更…

python中常见的几种错误

python中常见的几种错误: 1、end前面一定加逗号 2、命令输入错误 3、冒号中英文切换 4、命令缩进错误 5、等于号要双等于,否则一个等于号是赋值 6、命令之间正确搭配

公开发布版的Windows Azure 基础结构服务中的 SQL Server – 文档和最佳实践(已更新),还有即将发布的博客...

一周前,WindowsAzure 刚刚宣布公开发布版的基础结构服务正式推出, 这标志着WindowsAzure从此开始完全支持基础结构即服务,SQL Server是其中的一个主要组件。 预安装的SQL Server VM 可在Windows Azure 库中找到, 按使用的小时数收费。目前,运…

LeetCode 1181. 前后拼接(哈希map)

文章目录1. 题目2. 解题1. 题目 给你一个「短语」列表 phrases,请你帮忙按规则生成拼接后的「新短语」列表。 「短语」(phrase)是仅由小写英文字母和空格组成的字符串。「短语」的开头和结尾都不会出现空格,「短语」中的空格不会…

python中字符串注意事项

字符串输入和输出userName input(请输入用户名:)print("用户名为:%s"%userName)password input(请输入密码:)print("密码为:%s"%password)1.字符串在单引号和双引号之间2.字符串无法修改3.三引号适合创建多行字符串4.字符串可以进…

Android设置text按钮,安卓基础控件使用(TextView、Button、ImageView、EditText)

一、文本控件TextView1.布局文件android:text"string/content"android:layout_width"wrap_content"android:layout_height"wrap_content"android:textColor"color/green"android:textSize"dimen/title"android:lines"1…

前端开发规范文档

Web Front-end Development Document Specification(www.weyoo.cn) 1、文件管理规范 1) 资源文件目录 背景图片目录 图标目录 图片目录 临时图片目录 样式文件目录 脚本文件目录 flash文件目录 上传文件目录 静态文件目录 images/bg images/ico images/pic images/temp style j…

LeetCode 1135. 最低成本联通所有城市(最小生成树+排序+并查集)

文章目录1. 题目2. 解题1. Kruskal2. prim1. 题目 想象一下你是个城市基建规划者,地图上有 N 座城市,它们按以 1 到 N 的次序编号。 给你一些可连接的选项 conections,其中每个选项 conections[i] [city1, city2, cost] 表示将城市 city1 …

python中的下标索引

所谓“下标”,就是编号,就好比超市中的存储柜的编号,通过这个编号就能找到相应的存储空间。字符串实际上就是字符的数组,也支持下标索引.如果有字符串:name abcdef,在内存中的实际存储如下:如果想取出部分字符,那么可…

android 视频转字节,如何将视频文件(.mp4)格式转换为android中的二进制格式?...

我想在网络服务器上传视频。我得到了我想要以二进制格式传递文件的服务,我该怎么做?如何将视频文件(.mp4)格式转换为android中的二进制格式?我试图通过base64将视频文件转换为二进制格式..?public class binaryformat extends Act…

python中的切片以及注意事项

切片是指对操作的对象截取其中一部分的操作。字符串、列表、元组都支持切片操作。字符串:[起始:结束:步长] 注意:选取的区间属于左闭右开型,即从"起始"位开始,到"结束"位的前一位结束(不包含结束位…

LeetCode 1057. 校园自行车分配(map有序+贪心)

文章目录1. 题目2. 解题1. 题目 在由 2D 网格表示的校园里有 n 位工人&#xff08;worker&#xff09;和 m 辆自行车&#xff08;bike&#xff09;&#xff0c;n < m。所有工人和自行车的位置都用网格上的 2D 坐标表示。 我们需要为每位工人分配一辆自行车。在所有可用的自…

python中的字符串操作及注意事项

1.mystr.find(str, start0, endlen(mystr)) 检测str是否包含在mystr中,如果是返回开始的索引值,否则返回-1.mystr.rfind(str, start0,endlen(mystr) ) 类似于find()函数&#xff0c;不过是从右边开始查找.2.mystr.index(str, start0, endlen(mystr)) 跟f…

linux配ipv6 ipv4 双栈,RouterOS配置原生IPv6(电信IPv4/IPv6双栈)

无意中发现江苏(苏州)电信的原生IPv6改为有状态的IPv6&#xff0c;那么我使用的RouterOS软路由(以下简称ROS)就可以获取到IPv6的地址了&#xff0c;所以又可以折腾了一波。一、IPv6介绍IPv6的地址共有128位&#xff0c;也就是IPv6地址总量一共有2的128次方个地址。/32、/48是IP…

java mail 设置参数

Session需要使用java.util.Properties来构造&#xff0c;常用的用来构造Session的属性&#xff1a; 属性名 含义 mail.smtp.user SMTP的缺省用户名。 mail.smtp.host 要连接的SMTP服务器。 mail.smtp.port 要连接的SMTP服务器的端口号&#xff0c;如果connect没有指明端口号就使…

LeetCode 555. 分割连接字符串

文章目录1. 题目2. 解题1. 题目 给定一个字符串列表&#xff0c;你可以将这些字符串连接成一个循环字符串&#xff0c;对于每个字符串&#xff0c;你可以选择是否翻转它。 在所有可能的循环字符串中&#xff0c;你需要分割循环字符串&#xff08;这将使循环字符串变成一个常规…