Kyl*_*nke 4 notifications android android-notifications android-settings android-5.0-lollipop
在Android Lollipop中,当您长按通知时,它可让您访问该通知的应用程序的设置,例如优先级,或者只是阻止它.我是否有意图访问这些设置?
在这里找到答案 - https://plus.google.com/+CyrilMottier/posts/YY6tbJrJMra
您需要将此添加到要附加到该设置图标的活动
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.NOTIFICATION_PREFERENCES" />
</intent-filter>
Run Code Online (Sandbox Code Playgroud)