设置日期时,警报管理器不会触发通知

时间:2019-10-24 18:09:29

标签: java android android-studio

我正在尝试在特定的日期和时间设置通知。

仅当我将小时和分钟的日历值设置为日期时,通知才起作用。 这是我的代码示例

  ListView.builder(
      itemCount: get.length + 2, // add room for the two extra
      itemBuilder: (BuildContext context, int index) {
        if(index == 0){
         return Text('Generate By Developer');
        }
        if(index == 1){
         return Text('Generate By Developer');
        }
        index -= 2; // decrement index so that it's now in the range [0..length]
        return Bubble(
            style: styleSomebody,
            child: Container(
              ... 
            ));
      }),

我在做什么错了?

1 个答案:

答案 0 :(得分:2)

Java日历月份从0开始,因此如果您希望十月份是月份,则它将是9而不是10

cal1.set(Calendar.MONTH, 9);