Local Notifications in Android - The Full Guide (Android Studio Tutorial)

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ส.ค. 2022
  • With notifications, you can show an information to the user when your app is not active and encourage them to do some action like opening your app. In this video you'll learn how you can show such notifications in Android.
    ⭐ Get certificates for your future job
    ⭐ Save countless hours of time
    ⭐ 100% money back guarantee for 30 days
    ⭐ Become a professional Android developer now:
    pl-coding.com/premium-courses...
    Subscribe to my FREE newsletter for regular Android, Kotlin & Architecture advice!
    pl-coding.com/newsletter
    Join this channel to get access to perks:
    / @philipplackner
    Get the source code for this video here:
    github.com/philipplackner/Not...
    Join my Discord server:
    / discord
    Regular programming advice on my Instagram page: / _philipplackner_
    Checkout my GitHub: github.com/philipplackner
    You like my free content? Here you can buy me a coffee:
    www.buymeacoffee.com/philippl...

ความคิดเห็น • 61

  • @frukoyurdakul
    @frukoyurdakul ปีที่แล้ว +25

    Good video for a tutorial! I would like to mention something that I've experienced about 2 weeks ago while dealing with foreground services, which also requires notifications so I thought this would be a nice place to mention.
    As of 2022-08-03, starting from API 33 (Android 13 Tiramisu), you will need to ask a runtime permission for notifications which the user will be able to deny. If that happens, you won't be able to post notifications. That includes creating notification channels as well. I had a habit of creating the channel right before posting the necessary notification before. But on API 33, the system prevents the app from creating a valid channel that you could post your notifications on if user denies the permission. That effectively prevents you from posting notifications for foreground services as well (the documentation states it will permit calling startForeground with a valid notification but actually doesn't if the permission was denied and channel was not created beforehand.)
    But, before asking the permission, you can create a notification channel, then the system will not post it when startForeground is called but it will not crash even if the user denies the permission afterwards. So, create your notification channels in application class, devs!
    Just wanted to mention it here.

    • @original_anu
      @original_anu ปีที่แล้ว +3

      This permission requirement is a headache. Many people might dismiss it unintentionally and might now know how to re-enable it from App info

  • @Sam-yb9ut
    @Sam-yb9ut ปีที่แล้ว +4

    Very helpful. I love this channel because I think this is one of the channels which are has up-to-date information. Most of the other Android channel videos are very old. Appreciate the level of free content which is provided. Thank you.

  • @lyawileh.a8741
    @lyawileh.a8741 ปีที่แล้ว

    This is the perfect video I was looking for. Thanks very much.

  • @ubersticks
    @ubersticks ปีที่แล้ว

    Thanks Philip. Nice, quick tutorial.

  • @tanveerhaiderjafri4133
    @tanveerhaiderjafri4133 10 หลายเดือนก่อน

    Thanks for mentioning in advance that, its all about locah notifications and not about push notifications. You also explaing difference between push and local notification. good work bro.

  • @bortolex
    @bortolex ปีที่แล้ว

    Thank you! Really nice and understandble tutorial!

  • @KingFuYouTube
    @KingFuYouTube ปีที่แล้ว +2

    Philipp Lackner I have been watching every single tutorial video you published. Furthermore, I really like your videos and I would love to see more. Moreover, I hope that you will do a video on foreground service soon. Thank you for your hard work.👍

    • @osisuper98
      @osisuper98 ปีที่แล้ว

      He’s done it before in one of his old videos.

  • @wahyukoco4562
    @wahyukoco4562 ปีที่แล้ว

    wow! you actually solve my problem! i kinda regret not watching this earlier when found a bug in notification :(

  • @ishantsharma16
    @ishantsharma16 ปีที่แล้ว +11

    Please upload push notification video also and how to manage push notification when app is open

  • @yuruar
    @yuruar ปีที่แล้ว

    Another great video, thanks!

  • @ahmedassas5065
    @ahmedassas5065 ปีที่แล้ว +7

    Please explain to us about sending at a specific time by jobscheduler

  • @Dibyendu.M
    @Dibyendu.M ปีที่แล้ว

    Thank you brother. This video is very helpful. Love from India. ❤

  • @akthamahmed2171
    @akthamahmed2171 ปีที่แล้ว

    Always Awesome tutorial thanks you 🌹

  • @jarvis2913
    @jarvis2913 ปีที่แล้ว +1

    Very Informative thanks for notifications guide

  • @AliouneDupuy
    @AliouneDupuy ปีที่แล้ว

    👍 great video. Thanks!

  • @dkakqlql
    @dkakqlql ปีที่แล้ว

    Nice video! I refer to your videos often. Thanks. Can i ask how to create android project templates like initial source code you given? Have a nice day 😊😊

  • @Jurica-mtb
    @Jurica-mtb ปีที่แล้ว +1

    Hi! I would like to know if there is a way to improve the use of Android navigation app which would notify users by screen flashing, vibrating or maybe sending warning to an external device which would sit in user's pocket when user is approaching to waypoints specified inside a ?.gpx file. Here's why: when riding a motorcycle during sunny days the mobile screen reflects the sunshine and it is hard to see a waypoints on display and riders can't hear the phone's sounds. I guess screen flashing would be the best way to warn/notify riders.
    So far I liked OsmAnd app for navigation. If it could display warnings as I described it would be great because available voice prompts are kind of useless.

  • @aurere1612
    @aurere1612 ปีที่แล้ว

    Hello, thanks for this video ! How can we make the notifications display as heads-up ?

  • @mohamadalighezelbashyan4482
    @mohamadalighezelbashyan4482 ปีที่แล้ว

    Can we put createNotificationChannel method in dependency injection instead of the "MyApp" class?

  • @denisk3852
    @denisk3852 ปีที่แล้ว

    Thank you! How about video for WearOs app with Compose? How to connect an app with watches?

  • @canaldobiel2105
    @canaldobiel2105 ปีที่แล้ว

    thanks a lot excelent explanation

  • @khangchow5694
    @khangchow5694 ปีที่แล้ว

    Hi Philips, I wonder if we can pin a notification on top without make it heads up (setting priority high)

  • @tmjromao
    @tmjromao ปีที่แล้ว

    Hello Philipp L. many thanks for another informative and well explained video. Could you explain how to load a static json file from assets folder to a data class in viewmodel context? Using Moshi or other solution. Soon joining the community, thanks, best regards

  • @sohaibkhan3279
    @sohaibkhan3279 ปีที่แล้ว

    very informative

  • @kirwakelvinkering3122
    @kirwakelvinkering3122 ปีที่แล้ว

    Thank you so much .assume we are loading data from the bacend server ,how can we keep the user notofied even when the app js closed .thank you Philip .🙏

  • @theevan3867
    @theevan3867 ปีที่แล้ว

    Thank you!

  • @movieschannel654
    @movieschannel654 ปีที่แล้ว

    Hey Philipp Lackner - Can you please help me with test cases on Sealed classes?

  • @kamanchomorgan9655
    @kamanchomorgan9655 ปีที่แล้ว

    Pleased make video about bottom navigation with compose destinations

  • @motivationsondemand
    @motivationsondemand ปีที่แล้ว

    Please explain How to shedule notfication for every day at a specific time

  • @RaHuLSiNgH-gt4im
    @RaHuLSiNgH-gt4im ปีที่แล้ว

    The background power consumption manager feature is killing the notification after running for a few minutes (especially this feature in vivo models). Put some light on this.

  • @911_Shorts
    @911_Shorts ปีที่แล้ว

    is there any video for background notification?

  • @bradley123225
    @bradley123225 ปีที่แล้ว

    Can you do a fcm push notification tutorial please.

  • @anhemcoder4745
    @anhemcoder4745 9 หลายเดือนก่อน

    I have 3 routes: Home(), Product(), ProductDetail().
    . When my app is not running. I sent a notification from firebase, my phone received the notification. When I open the notification I want it to lead to ProductDetail(), but now when I open it it only leads to the Home() route. When the application is running and receives a notification, the above behavior leads to the ProductDetail()--> route (What I want). Can you tell me how to fix it or what keywords to search for? Thanks

  • @rogercolque
    @rogercolque ปีที่แล้ว

    about runtime permssion app for notification appear in Android 13.
    even if is local notificacions need that righT?

  • @yeyaanshkit
    @yeyaanshkit ปีที่แล้ว

    Please create a whole new series of Android Development (Kotlin) for Beginners
    Please... Love you from India🇮🇳🥰🥰🥰

  • @haykmkrtchyan7093
    @haykmkrtchyan7093 ปีที่แล้ว

    I'm sure you'll get 100K subs 😁

  • @Vword
    @Vword ปีที่แล้ว

    what is the difference between the priority in the notification channel and in the notificationcompat builder?

    • @victorlapin2080
      @victorlapin2080 ปีที่แล้ว

      All lights/vibrations/priority stuff in notification builder refers to lower sdk versions, when notification channels weren't a thing. On higher sdk, if there's a notification channel, all settings should be set in there

  • @olavgausaker1
    @olavgausaker1 4 หลายเดือนก่อน

    Thanks for a great video, but I can't manage to get the notification to appear. Any ideas?

  • @jabbarpanggabean
    @jabbarpanggabean ปีที่แล้ว

    I want to buy your premium class bundle, but I'm still a student. Do you have any promo code?

  • @dennis4521
    @dennis4521 2 หลายเดือนก่อน

    What if we want a button just to dismiss it? Is there a way of doing that?

  • @mustafaammar551
    @mustafaammar551 ปีที่แล้ว

    you are the best

  • @abdirahmanhassan707
    @abdirahmanhassan707 ปีที่แล้ว

    Hey can you make a tutorial for increasing push notification for Android the maximum is 24 can you make it to 50 or 80 I like using Twitter but I only get 24 maximum.

  • @shreyashachoudhary480
    @shreyashachoudhary480 ปีที่แล้ว +1

    Thanks man!
    .
    .
    Still waiting for MacBook give away 😅

  • @codeforandroid
    @codeforandroid ปีที่แล้ว

    Nice video

  • @hossamqandel5638
    @hossamqandel5638 ปีที่แล้ว

    hi philip.. i wanna ask you about something but first let me tell small secret " You are a gift from heaven for Android application programmers
    my quistion is if i am implementing FCM and i received newMessage.. how can i handle this newMessage to work only when user on foreground service?
    the problem is fcm extended class show notification even app closed or not and fcm class dont have foreground funcation

  • @PandaTop.
    @PandaTop. ปีที่แล้ว +1

    Дякую!

  • @martinseal1987
    @martinseal1987 ปีที่แล้ว

    Can you add full screen notifications

    • @ankitverma3932
      @ankitverma3932 ปีที่แล้ว

      I don't think that is possible

  • @kishorramani007
    @kishorramani007 ปีที่แล้ว

    KTOR full tutorial

  • @commenter-cl4gl
    @commenter-cl4gl ปีที่แล้ว

    What about send notification without firebase?

    • @PhilippLackner
      @PhilippLackner  ปีที่แล้ว +2

      What do you mean? This video shows exactly that

    • @commenter-cl4gl
      @commenter-cl4gl ปีที่แล้ว

      @@PhilippLackner im sorry, i mean i watched your video build chat app using mongoDB and Ktor, can you make videos push notif when the chat come in and notif will show

    • @jagat.jeeban
      @jagat.jeeban ปีที่แล้ว

      @@PhilippLackner Please make a video about sending push notifications with firebase...like in a chat app when someone send a msg the notification will show up in the notification bar.

    • @ankitverma3932
      @ankitverma3932 ปีที่แล้ว +1

      @@jagat.jeeban There is already a video about sending push notification in this channel.

  • @KeibolStraiker
    @KeibolStraiker ปีที่แล้ว

    Not full guide if you don´t show how to receive the notification when app is closed.

  • @noxhirecords
    @noxhirecords ปีที่แล้ว

    I was only missing to add the Notification Channel reference in the NotificationCompat.Builder(context, CHANNEL_ID). Thanks :D

  • @ChrisAthanas
    @ChrisAthanas ปีที่แล้ว

    To pass a bundle with the intent, you will need to use the flags: PendingIntent.FLAG_CANCEL_CURRENT or PendingIntent.FLAG_UPDATE_CURRENT, otherwise the extras are ignored. Unkown why, just like a lot of android strangeness, it will remain a mystery.