How to sort notification channels in system settings on android O

别等时光非礼了梦想. 提交于 2019-12-11 06:05:14

问题


I have preset order of notification channels, that can be change. How to change order of notification channels? I try to sort by channel_id and channel_name, but it is not work.


回答1:


There was error in my solution. I try to add number of channel on start of channel id for sorting. So i had this:

56_server_channel_id
78_server_channel_id
155_server_channel_id
9998_default_app_channel_id
9999_default_app_channel_id

But because of missing leading zeros, it sorted not as i expected. So, right solution is:

0056_server_channel_id
0078_server_channel_id
0155_server_channel_id
9998_default_app_channel_id
9999_default_app_channel_id



回答2:


I use this tutorial yesterday and works perfectly, but its on spanish, check NotificationUtils class

https://code.tutsplus.com/es/tutorials/android-o-how-to-use-notification-channels--cms-28616



来源:https://stackoverflow.com/questions/50854990/how-to-sort-notification-channels-in-system-settings-on-android-o

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!