Android development notification jump

Source: Internet
Author: User

A small application in the project is not worth writing, but I haven't been writing a blog recently. It's just now that I am idle, and I have to write it for a while.

To send a Notification to a Service, you need to give it a PendingIntent so that the Notification can jump to the application. If the application exits, It is started. If the application returns to the desktop through the Home key, the interface before the application is started is not restarted. This PendingIntent needs to pass an intent, which is implemented through this Intent.


[Java]
Intent intent = new Intent (Intent. ACTION_MAIN );
Intent. addCategory (Intent. CATEGORY_LAUNCHER );
Intent. setComponent (new ComponentName (getPackageName (), yourLauncherActivityName ));
Intent. setFlags (Intent. FLAG_ACTIVITY_NEW_TASK | Intent. FLAG_ACTIVITY_RESET_TASK_IF_NEEDED );

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.