Home > OS >  Add app launcher to android notification menu menu
Add app launcher to android notification menu menu

Time:10-12

I would like to add an option to launch my app video the android pull down menu/notification bar. I have attached screenshots of this:Image 1

Image 2

Image 1 shows the pull down menu I'm referring to. Image 2 shows where I would like my app launcher to be. Is there any possible way of doing this using either regular Java for Android or the Flutter SDK?

CodePudding user response:

If you mean that you are looking to add an option where you see "Huawei Share", "Screenshot", etc., that requires you to implement a TileService. I do not know whether Flutter supports this, but you can definitely implement one in Java or Kotlin.

This class implements a TileService, though the example is rather old.

  • Related