怎样调用Android手机右上角状态栏的闹钟图标
最近在写一个闹钟的小应用,基本功能都可以实现了,但是不知道怎样显示Android手机右上角状态栏的闹钟图标,请各位高手帮帮忙,教教我,thanks!!! --------------------编程问答-------------------- 同学,通过NotificationManager服务发送Notification。你百度一下相关内容。 --------------------编程问答-------------------- 可以参考下系统自带的闹钟.apk的源码 --------------------编程问答-------------------- 谢谢,但是百度上通过NotificationManager服务发送Notification的文章都是现实状态栏左上角的,这个我懂,就是不懂怎样调用状态栏右上角的图标,NotificationManager这个可以调用右上角的图标吗? --------------------编程问答--------------------
请问2楼,哪里有系统自带的闹钟的源码呢? --------------------编程问答--------------------
谢谢,但是百度上通过NotificationManager服务发送Notification的文章都是现实状态栏左上角的,这个我懂,就是不懂怎样调用状态栏右上角的图标,NotificationManager这个可以调用右上角的图标吗? --------------------编程问答-------------------- /**
* Tells the StatusBar whether the alarm is enabled or disabled
*/
private static void setStatusBarIcon(Context context, boolean enabled) {
Intent alarmChanged = new Intent("android.intent.action.ALARM_CHANGED");
alarmChanged.putExtra("alarmSet", enabled);
context.sendBroadcast(alarmChanged);
} --------------------编程问答--------------------
it's impossible
那是系统调用的,app只能弄弄notification. --------------------编程问答-------------------- 谢了! --------------------编程问答--------------------
楼主这个方法有用么?
补充:移动开发 , Android