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