我正在尝试将时间选择器添加到“首选项屏幕”中,我遵循了一些教程,但对我来说不起作用
我遇到了方法onSetInitialValue的问题,强制转换问题
@Override
protected void onSetInitialValue(boolean restorePersistedValue,
Object defaultValue) {
// Read the value. Use the default value if it is not possible.
setTime(restorePersistedValue ?
getPersistedInt(mTime) : (int) defaultValue);
}
整数转换问题 图图: https://medium.com/@JakobUlbrich/building-a-settings-screen-for-android-part-3-ae9793fd31ec