我有一个有通知的应用程序,我希望用户能够从设置中测试通知,看看他们是否正确设置了它。通知活动有一个布尔变量runOnce
,我想通过传递给活动的意图数据将其设置为 true。到目前为止我有这个-
<Preference
android:summary="Test the notification to ensure the settings are correct"
android:title="Test Notification"
android:key="testNotification">
<intent android:action="com.orbitdesign.testApp.refreshNotificationIntentService" />
</Preference>
但这会产生意图不存在的错误。
所以我想我的问题是双重的,
首先,我如何IntentService
通过设置菜单启动课程XML
?
其次,有没有更好的方法来实现这一点,也许是通过课堂上onClickListener
的Settings.java
?我将如何实施这样的事情?
另外我需要传递runOnce = true
给,refreshNotificationIntentService
否则它不会运行。我怎样才能做到这一点?
谢谢