712 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
64
views
App disappeared from "Recently used" after being set, then unset, as the default Home/Launcher App (Android)
My android application is intended to operate as both a regular app and a home/launcher app.
When used as a regular app, everything works fine (it appears in the "Recently used" list when ...
1
vote
0
answers
34
views
How can I display website shortcuts on my android launcher?
I'm developing an android launcher with Kotlin in Android Studio, and I'm lacking a way to get the shortcuts browsers like Chrome create when clicking on "Add to Home screen". I know there ...
0
votes
0
answers
68
views
Android Launcher Crashes on IQOO/Vivo with ClassNotFoundException: android.os.ufw.UltraFrameworkComponentFactoryImpl
I'm developing a custom launcher application for Android, and it's experiencing a fatal, native-level crash exclusively on certain Iqoo/Vivo devices. Because the app is a default launcher, this crash ...
0
votes
0
answers
72
views
Understanding Android Launcher Icons in 2025
I am working on a project where the min SDK is set to 21 for as long as Jetpack Compose supports it.
With SDK 21 having introduced native support for SVG, it is my understanding that my project needs ...
0
votes
0
answers
27
views
Creating dynamic rows in Android tv app creates duplicate row and also if data changed in the list UI didn't refresh to new data issue
[![My screen][1]][1]
Above Image is my output screen, Background is in homeFragment and there i'm adding static data for the OTTPlatforms initially with last item as Plus icon to add any other apps. ...
0
votes
0
answers
58
views
How to replace default launcher by my app in Google certified device
We are implementing an app that is having a WebView and load a website. And this app is implemented as a launcher app, and we don't want the user to go to any other launcher. (This is for STB devices ...
0
votes
1
answer
83
views
Set badge number to 0 in an Android notification
I have created a notification channel in android with setShowBadge(true). In each notification I post there, I use setNumber() and set the number to the unread message count for that conversation. ...
0
votes
0
answers
57
views
Delay in launching flutter app from overlay after the home button is pressed
I am developing a Flutter app where I use the flutter_overlay_window plugin to create an overlay when the app moves to the inactive state (i.e., when the user presses the home button, recent apps ...
-1
votes
1
answer
71
views
how to implement url launcher for facebook?
In my Flutter app, I am implementing feature like-
There will be a button, and if user hit that button, it will take user to specific facebook profile for communicating through Facebook. I have ...
1
vote
0
answers
45
views
Missing splashscreens when using getLaunchIntentForPackage
I am using getLaunchIntentForPackage to launch other apps from my app.
val launchIntent: Intent? = context.packageManager.getLaunchIntentForPackage(id)
context.startActivity(launchIntent)
Everything ...
0
votes
1
answer
492
views
Android Launcher activity and the launch mode
I recently migrated to use Android 12's new SplashScreen API and removed the custom splashactivity. The MainActivity always had launchMode = singleTask to avoid recreating it multiple times when ...
0
votes
1
answer
559
views
A problem occurred configuring project ':launcher'. Unity android build
I've been having this same problem with building my android game from Unity. I recently changed from version 2021年3月7日f1 to 2022年3月29日f1 and then back again trying to fix a separate issue with my APK ...
1
vote
1
answer
293
views
Android Google AOSP Navigation Bar is gone
I'm using Android 13 Google AOSP.
In Settings -> System -> Gesture -> System Navigation, neither Gesture Navigation nor 3-button Navigation works.
Gesture navigation works normally, but the ...
1
vote
1
answer
126
views
For a singleTop activity, the previous instance is reused, even though the activity was not at top of the stack
`The LauncherActivity is the first screen in Homescreen. I am trying to understand if singleTop or singleTask would be the right launchmode.
The idea is to avoid creating multiple activity instances ...
0
votes
0
answers
266
views
How can I properly handle nested scrolling in VerticalViewPager with a LazyColumn inside?
I'm trying to simulate a launcher app. It has a main main screen and an apps drawer. I've implemented this with a VerticalViewPager: page 0 is the main page and page 1 is the app drawer. That way, I ...