Questions tagged [android-launcher]

An Android Launcher is the app responsible for showing the home screen, live homescreen widgets, wallpapers and displaying an app list. Unlike iOS, a launcher on Android can be provided by third party.

Launcher is the part of the Android user interface that lets users customize the home screen, launch apps, make phone calls, and perform other tasks.

The Android OS comes with a default launcher, but there are a number of alternative Launchers available for download on Google Play, and many OEMs replace the default with their own implementations.

704 questions
0
votes
1 answer

Listener for when the launcher function is called

I am working on a Launcher activity and I want when the user presses the home button, it will go to the launcher activity only if the launcher activity is running on screen. Is there a listener for when the launcher function is called? When I say…
DDukesterman
  • 1,391
  • 5
  • 24
  • 42
0
votes
1 answer

My android widget crashes launcher. How do I debug that?

I have developed a simple widget which has two buttons switching my dual-sim phone sim cards on and off. I wire buttons click within onUpdate method of my AppWidgetProvider implementation. Unfortinately after few successfull clicks, launcher…
Alexander Efimov
  • 2,685
  • 3
  • 18
  • 22
0
votes
3 answers

Override Home Button Android

I'm programming an app that must stay on the screen of a tablet which is accessible by everyone. This means that only people who know the passcode can access the tablet, while passing-by users can only use the app. However, I'm stuck on the home…
Luca Pasquali
  • 66
  • 2
  • 8
0
votes
1 answer

How to go to the launcher where all the apps are listed?

There is a button in my app, when user clicks it, she will be leaded to the launcher interface. I tried the following way: Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startActivity(startMain); But…
JackWM
  • 10,085
  • 22
  • 65
  • 92
0
votes
0 answers

Remove one of activitys icon from launcher

I write a test app with several icon in launcher,such as icon A,icon B and icon C. What I do like follow: PackageManager p = getPackageManager(); ComponentName mComponentName = new…
0
votes
1 answer

How to detect home activity is launched in android?

How to detect home activity is launched/displayed using package info. like we get package name by this code: ActivityManager.RunningTaskInfo localRunningTaskInfo =…
yuva ツ
  • 3,707
  • 9
  • 50
  • 78
0
votes
0 answers

Activity does not start, but another activity work fine

I have two activities. When i mark my first activity as launcher(StartActivity) i get an error, but when i mark second activity(MainActivity) he works. Here is code:
nikitko43
  • 79
  • 1
  • 2
  • 3
0
votes
1 answer

Starting launcher and moving to default homescreen

I'd like to start a specific launcher (set by the user), which is working fine with the code below. However, the launcher isn't moving to the user's "default" screen (e.g. the leftmost screen), but rather to the one where the user last left off. Is…
Nick
  • 3,504
  • 2
  • 39
  • 78
0
votes
4 answers

Can't install APK correctly on device

I have built & sign my apk by Eclipse ADT as it is describes (export and sign by creating a new key). But it can't be install on real device while an errors occurs, such as "installer package error". I have no Android device & sent my apk to friends…
Konstantin Konopko
  • 5,229
  • 4
  • 36
  • 62
0
votes
1 answer

about Launcher android

I have 2 questions about launcher below: I have 3-4 launchers on device, how can i know which launcher has been set default on my device (with code).(Done) I have own custom launcher app, I want clear default launcher on my app and without use:…
dleviathan
  • 87
  • 1
  • 2
  • 17
0
votes
1 answer

How are notification badges implemented in Android launchers? Can I do this in my application?

As far as I understand, there is no way to dynamically change application icon in Android. There are a lot of posts in SO about it. Nevertheless, on my stock Nexus 4 with vanilla Android, I have Go launcher installed and it can set badges above the…
MainstreamDeveloper00
  • 8,436
  • 15
  • 56
  • 102
0
votes
1 answer

Some problems about Oncreate of Application and Activity in Android application

I have already written some Android application, but recently I find that I still not really know how an Android Application works. My problems are something about the AndroidManifest.xml, I want to know something about the life cycle of Android…
0
votes
1 answer

Recycling views shows same item multiple times

I have a gridview which shows all apps installed on the device. Whenever I try to recycle items (Using convertView == null etc.) the same icon and Text shows up multiple times in my grid. This is my code: @Override public View getView(int position,…
user754730
  • 1,341
  • 5
  • 31
  • 62
0
votes
2 answers

how to get the right icon in Android Launcher?

My Application is a Launcher, I have probleme to get the good size of icon, i tried to use the list of icon and to set the right size. but with devices that have an xxhdpi, my application carsh. the Class used to get Application information import…
Zizou
  • 1,891
  • 3
  • 15
  • 16
0
votes
2 answers

Creating Home Replacement app?

I want an application that acts as a Home Replacement app. There are several activities when you first launch the app that allow you to configure basic settings. Then you get to the Home Screen. In the Android Manifest, I have added the following…
scibor
  • 983
  • 4
  • 12
  • 21