Android O:通知频道本地化

Alé*_*lho 10 android localization android-8.0-oreo notification-channel

我创建了一个这样的通知频道:

NotificationChannel channel = new NotificationChannel(CHANNEL_ID_FOOBAR, getContext().getString(R.string.notification_channel_foobar), NotificationManager.IMPORTANCE_DEFAULT);
notificationManager.createNotificationChannel(channel);
Run Code Online (Sandbox Code Playgroud)

我为R.string.notification_channel_foobar提供了不同的翻译,并且使用创建时使用的语言创建了频道,因此如果我最终更改了设备的语言,那么该频道将保留旧语言.有没有办法克服这个问题,或者这是一个限制,即通过设计?

jma*_*art 11

要将新语言应用于通知频道,您需要在应用中收听ACTION_LOCALE_CHANGED广播,然后在接收方中再次调用createNotificationChannel.

重新创建频道会将您的字符串更新为新语言(其他频道功能都不会被修改).您可以在文档中看到它.