我有一些首选项(EditText和ListPreference),我必须在XML文件中添加日期首选项。这是可能的,它是否存在于共享偏好中?
感谢您的帮助。
答案 0 :(得分:3)
我很确定没有共享偏好的日期选择器,你很可能必须创建自己的。但是,您可以使用
将日期存储到首选项中 SharedPreferences.Editor editor = sharedPreferences.edit();
//editor.putLong(key, Long);
editor.putLong("thecurrentdate", currentDate.getTime());
这会将日期存储到首选项中,您可以将其存储到EditText首选项中。
也许这篇文章可以帮到你? How to store a Date object in SharedPreferences?
希望这有帮助!