Androidx 首选项不包括铃声首选项
Androidx Preferences not incuding RingtonePreference
我正在通过代码为我的应用程序设置 activity,因为 xml 编辑器除了 PreferenceScreen 找不到任何首选项。通过代码一切正常,但我找不到 Androidx
中的 RingtonePreferences
,我找到的唯一一个是 android.preference.RingtonePreference
.
中的那个
我有这个实现。
implementation "androidx.preference:preference:1.1.0-alpha02"
RingtonePreference
还没有添加?或者我可以使用另一个名称下的另一个首选项,以便让用户选择通知声音。谢谢!
RingtonePreference has not been added yet?
Google 表示 their libraries will not support RingtonePreference
.
or there is another preference under another name I can use in order to let users choose a notification sound
使用 ListPreference
。或者使用 this workaround。或者创建一个与铃声 API 集成的自定义 Preference
。
我正在通过代码为我的应用程序设置 activity,因为 xml 编辑器除了 PreferenceScreen 找不到任何首选项。通过代码一切正常,但我找不到 Androidx
中的 RingtonePreferences
,我找到的唯一一个是 android.preference.RingtonePreference
.
我有这个实现。
implementation "androidx.preference:preference:1.1.0-alpha02"
RingtonePreference
还没有添加?或者我可以使用另一个名称下的另一个首选项,以便让用户选择通知声音。谢谢!
RingtonePreference has not been added yet?
Google 表示 their libraries will not support RingtonePreference
.
or there is another preference under another name I can use in order to let users choose a notification sound
使用 ListPreference
。或者使用 this workaround。或者创建一个与铃声 API 集成的自定义 Preference
。