简体   繁体   中英

How to Set up Alarm Same like Alarm App in Android?

I am trying to setup alarm outside of my app with little popup box. I made that popup box by using Activity.I been trying for a long time to setup alarm like Alarm app but i get failed in some situations.

I am successful if i am exiting the app from the launch activity by using back button.

But when i press home button the alarm keep working charm but with last used activity in background.

I am not sure why this happening and i would like to know how i can make this work with out any activity in background when i pressed home button.

Here is my onReceiver Code.

@Override
public void onReceive(Context context, Intent intent) {


    try {
         Bundle bundle = intent.getExtras();
         String message = bundle.getString("alarm_message");

         Intent newIntent = new Intent(context, ReminderPopupMessage.class);
         newIntent.putExtra("alarm_message", message);
         newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
         newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
         context.startActivity(newIntent);
        } catch (Exception e) { 
         e.printStackTrace();

        }
}

}

If you guys provide the link for actual alarm app code that would be fabulous.

Thanks for your help guys.

I found the answer after long time

Just Added this in Android Popup Class Manifest File.

 <activity android:name=".AlarmPopup" android:theme="@android:style/Theme.Dialog"
          android:clearTaskOnLaunch="true" android:launchMode="singleInstance" 
          android:finishOnTaskLaunch="true" excludeFromRecents="true"/>

The problem get solved.

I hope it will help for someone.

Yes you should actually try src of Android alarm app here is the link.

have a look on my another answer here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM