Android 不要在经理面前工作

Android 不要在经理面前工作,android,notifications,alarmmanager,Android,Notifications,Alarmmanager,我需要在指定日期发出通知。我的主要活动是: public class MainActivity extends Activity { private PendingIntent pendingIntent; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_m

我需要在指定日期发出通知。我的主要活动是:

    public class MainActivity extends Activity 
{
private PendingIntent pendingIntent;

@Override
public void onCreate(Bundle savedInstanceState) 
{

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //if only it all is working.But me need notification at 12:12:00 PM 19.10.15
    //Utils.generateNotification(getApplicationContext());
    Calendar calendar = Calendar.getInstance();
    //set notification for date --> 19th Oct 2015 at 12:12:00 PM
    calendar.set(Calendar.MONTH, 10);
    calendar.set(Calendar.YEAR, 2015);
    calendar.set(Calendar.DAY_OF_MONTH, 19);

    calendar.set(Calendar.HOUR_OF_DAY, 12);
    calendar.set(Calendar.MINUTE, 12);
    calendar.set(Calendar.SECOND, 0);
    calendar.set(Calendar.AM_PM,Calendar.PM);
    Intent myIntent = new Intent(MainActivity.this, MyReceiver.class);
    pendingIntent = PendingIntent.getBroadcast(MainActivity.this, 0, myIntent,0);
    AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
    alarmManager.set(AlarmManager.RTC, calendar.getTimeInMillis(), pendingIntent);
}
还有我的接受者

    public class MyReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
    /*Intent service1 = new Intent(context, MyAlarmService.class);
     context.startService(service1);*/
    Log.i("App", "called receiver method");
    try{
        Utils.generateNotification(context);
    }catch(Exception e){
        e.printStackTrace();
    }
}
还有一些班级的通知是有效的

public class Utils {

public static NotificationManager mManager;

public static void generateNotification(Context context){ 

    mManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    Intent intent1 = new Intent(context,MainActivity.class);
    Notification notification = new Notification(R.drawable.ic_launcher,"This is a test message!", System.currentTimeMillis());
    intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP| Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(context,0, intent1,PendingIntent.FLAG_UPDATE_CURRENT);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    notification.setLatestEventInfo(context, "AlarmManagerDemo", "This is a test message!", pendingNotificationIntent);
    mManager.notify(0, notification);
}
并表明:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver android:name=".MyReceiver"
              android:enabled="false">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED"/>
        </intent-filter>
    </receiver>
</application>

看看这个

<receiver android:name=".MyReceiver"
              android:enabled="false">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED"/>
        </intent-filter>
    </receiver>

看起来您的接收器设置为仅在重新启动时发出通知。去吧,换成这个

<receiver android:name=".MyReceiver" />

设置一个意图过滤器可以单独指出如何激发接收器


不显示消息(通知)您是否尝试翻转月份和月份的日期变量。看起来它们是反向的。我在为发布准备代码时犯了这个错误。我甚至尝试了System.currentTimeMillis()+4000(和任何值)但不起作用它对我不起作用:(如果你能帮助我的话。我为我的项目添加了超链接我的答案,如其他答案之一。它对我不起作用:(如果你能帮助我的话。我为我的项目添加了超链接(在主帖子的末尾)
<receiver android:name=".MyReceiver" />