我使用日历类作为警报管理器的警报应用程序,但是我对班级日历的实例有错误。 我在其他论坛上投资,但我发现poblem是什么。 我需要你的帮助。
the error is marked in the instance of the calendar class enter image description here
答案 0 :(得分:15)
据我所知,您可以使用普通的Calendar代替API 24引入的ICU Calendar。尝试使用此导入var $rows = $('.list #data');
$('#search').keyup(function() {
var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
$rows.show().filter(function() {
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
return !~text.indexOf(val);
}).hide();
});
而不是此导入java.util.Calendar
。
答案 1 :(得分:1)
从日历选择日期:
import java.util.Calendar
代替此import android.icu.util.Calendar
然后为Date Pick编写这些代码。
Calendar callForDate = Calendar.getInstance();
java.text.SimpleDateFormat currentDate = new java.text.SimpleDateFormat("dd-MMMM-yyyy");
final String saveCurrentDate = currentDate.format(callForDate.getTime());
答案 2 :(得分:0)
我遇到了同样的问题,将android.icu.util.Calendar中的导入更改为java.util.Calendar并且它可以正常工作!希望它能帮助你!