作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
In alarm app, user gives input String for alarm message and sets alaram. I am able to set and listen alarm.but how to display message set by user? have set many times to set alarm, how can i display respective message for that specific alarm
最佳答案
您的 BroadcastReceiver 中应该有一个 onReceive(Context context, Intent intent) 函数。它看起来像:
public void onReceive(Context context, Intent intent) {
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, ""); // Second argument is an arbitrary String tag
wl.acquire();
// Put YOUR code here (between WaitLocks)
String userInputtedString = intent.getBundleExtra("UserText")
Toast.makeText(context, userInputtedString, Toast.LENGTH_LONG).show();
wl.release();
}
为了获得该 Bundle,您必须在创建警报时额外传递一个 intent
Intent intent = new Intent(context, AlarmNotification.class);
intent.putExtra("UserText", userInputedString);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
我刚刚展示了一个 Toast 消息示例,但您也可以将其更改为 Notification 或 AlertDialog。如果这有帮助,请告诉我。
关于android - 如何设置报警信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10978367/
我是一名优秀的程序员,十分优秀!