1

毎日午前8時30分にユーザーに通知を表示したいアプリケーションがあります。すべてが正常に機能しています。一つのことを除いて。アプリを開くたびに通知が表示されます。このバグをたくさん検索しましたが、このバグを修正できません..

これは私のアプリのランチャー クラスです。

public class xyz extends Activity {




/** Called when the activity is first created. */

@SuppressWarnings("deprecation")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);




    Intent myIntent = new Intent(xyz.this , NotificationService.class);     
    AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
    PendingIntent pendingIntent = PendingIntent.getService(xyz.this, 0, myIntent, 0);
    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.HOUR_OF_DAY, 8);
    calendar.set(Calendar.MINUTE, 30);
    calendar.set(Calendar.SECOND, 00);
    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), 24*60*60*1000 , pendingIntent);


        final ConnectivityManager conMgr =  (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
        final NetworkInfo activeNetwork = conMgr.getActiveNetworkInfo();

        if (activeNetwork != null && activeNetwork.isConnected()) {
            //notify user you are online
             Thread Timer = new Thread(){               
                    public void run()
                    {   
                       try{                 

                           sleep(3000);

                       }catch(Exception e){

                    e.printStackTrace();

                    }

                     finally{


                    Intent openScreen = new Intent(xyz.this , Selection_Page.class);

                    startActivity(openScreen);

             }      

                    }       

                   };

                        Timer.start();
        } 
        else { // something in else} }}

これが私の通知サービス クラスです。

public class NotificationService extends Service {

private NotificationManager mManager;

@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onCreate() {
    super.onCreate();
}

@Override
public void onStart(Intent intent, int startId) {
    //super.onStart(intent, startId);
    // Getting Notification Service
    mManager = (NotificationManager) this.getApplicationContext()
            .getSystemService(
                    this.getApplicationContext().NOTIFICATION_SERVICE);
    /*
     * When the user taps the notification we have to show the Home Screen
     * of our App, this job can be done with the help of the following
     * Intent.
     */
    Uri NOtification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), NOtification);
    r.play();


    Intent intent1 = new Intent(this.getApplicationContext(), Selection_Page.class);

    Notification notification = new Notification(R.drawable.brand_icon,
            "See my app for you", System.currentTimeMillis());

    intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(
            this.getApplicationContext(), 0, intent1,
            PendingIntent.FLAG_UPDATE_CURRENT);

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    notification.setLatestEventInfo(this.getApplicationContext(),
            "aaa", "See my app for you",
            pendingNotificationIntent);

    mManager.notify(0, notification);
}

@Override
public void onDestroy() {
    // TODO Auto-generated method stub
    super.onDestroy();
}}

私が何かを逃している場所を教えてください..

前もって感謝します..

4

2 に答える 2