The launcher tag has no wiki summary.
0
votes
0answers
27 views
Creating a game laucher in XNA
My current game needs to have a launcher which will ask for username and password and display some things like a feed from the game site. After you login the full game will launch and the user will be ...
0
votes
0answers
17 views
Widget is not appearing in widget laucher section
I have created a widget from scratch, and it works, but it doesn't appear in the widget section of Android 4.0+ launchers.
What must I change to ensure the widget appears in that launcher section?
0
votes
1answer
45 views
Set my home screen as default programmatically
Assume that I have multiple home screen installed in my android device.
When booting or pressing the HOME key, a dialog is shown to the user to select desired HOME screen and a check box to set this ...
1
vote
0answers
10 views
removing Laucher2 default favorite apps on homescreen
By default android launcher2 has 3 apps as favorites . they are camera, gallery and settings . Is there anyway I can remove it by making some changes in the code.
-2
votes
0answers
34 views
Create Web Icon Launcher on different platforms [closed]
I need to develop an aplication to launch a mobile version from a web.
I can't develop one application for androd, iphone, windows phone, blackberry, etc..
Anyone knows how to create an app launcher ...
0
votes
1answer
34 views
launch Android application's actions within another application
And I wonder if is possible to open an specific action I mean for example open a new mail in the gmail application, or new message on whatsapp stuff like that.
I'm trying to lunch application's ...
0
votes
0answers
22 views
Android control launcher
I have simple problem but i have not so much time on looking around and learning so much right now. I need to write a quickly "concept". I would like to control launcher of one android device with ...
0
votes
1answer
58 views
How to check if the current activity is the main/launcher activity in java
Is there any method such as isMainActivity() to detect the main/launcher activity in Android?
0
votes
0answers
16 views
Unity with Xlib: How to get panel and launcher information?
I'm trying to size and position my window in an adaptive way on my application's start-up; taking up as much screen space as possible, without overlapping the panel or launcher.
Does Xlib provide a ...
-8
votes
0answers
50 views
need to customize an android launcher [closed]
I would like to customize an android launcher(4.1 or later) by myself, I've done some search and learned java(though not expertise). Also, I learned some google source code of launcher, but not ...
0
votes
2answers
71 views
Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED|Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET
When these two flags are added(or set) to a new activity A, A becomes the top of task's back stack and is shown on the screen. Here HOME is pressed, and the screen shows home.
What I want: Then let's ...
-1
votes
2answers
113 views
Seaching files and add to textBox1 C# .Net
I wanna make a Gamelauncher. Currently, I want that it will search in C:\MyGamelauncher\Games\
for all text files. In these text files are commands like name and path to run it.
Like this: ...
7
votes
1answer
205 views
Detecting android Activity launches
I have searched the stackoverflow for this question and found :
Android, Detect when other apps are launched and
Reliable way to detect application launch from home / desktop? , which kind of answers ...
0
votes
0answers
49 views
Can we make android icons non-clickable android?
I am trying to create a launcher application, in which I want some of the icons to be non-tappable. Is this possible in android ?
0
votes
0answers
80 views
Home Launcher calling another launcher
I'm working on a app that behaves like a kiosk mode. I have a preference so I can disable the kiosk mode. For that I register my main activity as the home with:
<activity
...
1
vote
3answers
95 views
Remove icon from launcher
It is most popular problem and no one know how to resolve it...
For example:
<application
android:allowBackup="true"
android:icon="@drawable/add"
android:theme="@style/CustomTheme"
...
0
votes
0answers
23 views
Phone app of ICS doesnot have CATEGORY.LAUNCHER
I was checking android Phone app code . What I noticed was manifest file does not have CATEGORY.LAUNCHER . Without it how is it appearing on launcher ?
0
votes
0answers
61 views
Force application in portrait mode.(including hardware keyboard)
I am trying to modify a launcher to force it in portrait mode.
I added
android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation
in activity
But still problem is ...
1
vote
2answers
600 views
how to hide the status bar in launcher?
there are launcher which offers the possibility to hide or protect the status bar. i tried to get the position of the menu with TouchEvent and menu position when there is a touch I put a popup to say ...
1
vote
1answer
42 views
how to update the list of applications in a launcher?
I created a launcher to use my tablet with multiple profiles, it is configurable, I can choose the number of users of the tablet, each one will have its own space, with a list of application chosen by ...
0
votes
1answer
317 views
How to reset default launcher/home screen replacement?
When the user clicks Home he is given the choice of launcher and he can also choose whether to set it as default. The problem is that afterwards it's hard to change it again.
To fix this I added a ...
0
votes
0answers
97 views
Java Updater Game Launcher
I'm trying to make a Java game updater launcher for my game. Similar to how minecraft works. However, minecraft has only a few .jar's to download wheras I would need to redownload all of my game ...
1
vote
0answers
91 views
Android: How can I make interactive to live wallpaper?
I am building a simple launcher
I have the following code in activity:
public void onCreate(Bundle savedInstanceState){
setTheme(android.R.style.Theme_Holo_Wallpaper_NoTitleBar);
...
0
votes
1answer
31 views
How does a proper UpdateLauncher for java look like?
I was working on an update launcher for a java .jar application. I have several .jar-archives and a main.jar. My launcher adds/replaces the necessary jars when updating.
I am just not sure what ...
0
votes
0answers
41 views
Augment Homeworld 2 (game) with touch gestures
I want to enhance Homeworld 2 gameplay with touch gestures. The game is running on Windows.
So, two questions:
Is it possible to wrap the game with a program that would capture
touch gestures, ...
3
votes
3answers
120 views
Windows exe launcher for Java app with JRE check
I need to distribute a Java application and I want an installer to install it in all cases.
I need to create an *.exe launcher that will check the installed JREs and
if the required JRE isn't ...
0
votes
1answer
59 views
why the launcher show app icos is larger then the native launcher( build on android 4.2.2 source)
I compiled and build the launcher on the android 4.2.2 source code.
and I installed it on my Nexus 4,I found there's some differences between them.
I saw the code of Launcher and find it override ...
0
votes
0answers
10 views
Is the google-appengine-wx-launcher maintained
is the google-appengine-wx-launcher from google code still active because the last changes are from 2009 and I've submitted some bugs but are still there and this is the default launcher that comes ...
0
votes
0answers
126 views
Launch app on voice command (android)
I need an example of how I could launch my app on a voice command (trigger word).
So some sort of a service running in the background listening to everything and if the word matches a set textual ...
1
vote
1answer
88 views
Prevent Launcher/Main activity being launched by another Application
As title, I have an application that only want user to launch from home screen or the history menu. Can we detect whether the app is launched by any other application?
I have tried the ...
0
votes
0answers
212 views
Android own Launcher: How to set wallpaper as background
I want to create my own launcher. Now I'm even stuck here:
How can I set a wallpaper on it? I mean like on other launchers:
The user opens a wallpaper chooser, taps on a wallpaper and it is now the ...
0
votes
3answers
98 views
Launch urls based on different versions of java
I am in a situation where i need to create a simple launcher that allows me too select which web address to launch with different versions of java. I have researched several sites. Having the user ...
0
votes
1answer
65 views
wx-python version incorrect when installing google-app-engine-launcher on Ubuntu
I am trying to install google-app-engine-launcher on Ubuntu 12.04
Following the manual, I installed the launcher in the google-appengine-wx-launcher-read-only directory.
The command python ...
0
votes
0answers
109 views
Android: Pending Intent of Notification shall be used just once
I've a problem which seems strange to me. I've different notifications that are thrown when an alarm goes off. Each notification has an pendingIntent that contains a serializable object. As I am ...
0
votes
0answers
107 views
3rd party controls for non-touch “modern UI” style web application launcher
I work for a small business that provides data management services though both our own web application (in asp.net) and 3rd party applications (MS Dynamics, Salesforce, ESPs).
We are looking to ...
-5
votes
1answer
210 views
3D Skin Previewer for Minecraft in C#? [closed]
I want to make a skin previewer in my Minecraft launcher application, but I do not know how to accomplish this in C#.
I have seen this done in another C# application and was wondering how they did it, ...
1
vote
0answers
250 views
How to open the application from my android application with no launcher
I have 3 android applications. One main application call other 2 applications (main application will be interface for other 2 applications). I would like to have only one icon of this main app. I ...
0
votes
2answers
181 views
No Launcher activity found
I can't find any problem but it keep giving me the error "No Launcher activity found!" and "The launch will only sync the application package on the device!"
can anyone solve this problem???
This is ...
3
votes
0answers
138 views
Want my app on Launchers Homescreen
Hey in the Launcher code I want one app to be shown on homescreen , in AndroidManifest.xml. I wrote these lines :
<activity
android:name=".MyAppTabs"
...
0
votes
0answers
163 views
ADW.Launcher market app latest source code [closed]
The Anderweb's ADW.Launcher available on android market is open source.Its has been modified to ICS look and feel on 2.3 platform. I googled a lot but i get i github link that is updated 2 years back. ...
-5
votes
2answers
84 views
From source code to launcher.. HOW? [closed]
I am interested how to turn a working c/c++/java/python etc code to a application/launcher which I can send my friend, double click it and work as a normal application without the need to compile on ...
1
vote
1answer
55 views
How to determine if the foreground app is the launcher?
I know how to retrieve information about the foreground app:
public ActivityManager.RunningTaskInfo getForegroundTask()
{
ActivityManager am = (ActivityManager) mContext.getSystemService( ...
0
votes
1answer
114 views
iOS App without launch icon
is there a way to unmark an app as "launcher app"?
In Andorid i can set a property in the manifest.xml "android.intent.category.LAUNCHER".
If the property isn't setted, a launcher icon is not visible ...
0
votes
0answers
99 views
Force close when launching stock home screen from activity
I am trying to launch the stock home screen from an activity, but it keeps force closing. So far, I have an activity that displays a list of installed "homes". The user can choose one and it will ...
0
votes
1answer
196 views
Android: Get more icons (shortcuts) to activities in my package on the homescreen
I know I can create a widget that that can be placed on the homescreen, but is there a possibility that when the user installs the app, only my standard launcher icon will start a certain activity. ...
1
vote
1answer
94 views
A little error in Android launcher
I install my launcher on my device. If I press home button and select my launcher always without opening my application, everything's OK. However, when firstly I start my application, then press home ...
0
votes
1answer
225 views
Android if my launcher has not started and pressing home button
I've developed a launcher. In my device, there are 3 launcher with my application and the default launcher of Android. If I have not launched my application before, when I press home, my application ...
1
vote
2answers
2k views
Launch Minecraft from command line - usename and password as prefix
I'm trying to make a simple custom Minecraft launcher thing.
According to minecraft wiki's Launcher page:
http://www.minecraftwiki.net/wiki/Minecraft_launcher,
it should be possible to run the ...
0
votes
0answers
82 views
Properly determine the icon size to show on any device home screen?
It seems using Java to define the size of the icon to set on a home screen is not a simple issue.
One would assume 36-ldpi, 48-mdpi, 72-hdpi, 96-xhdpi but (and it's a big but)
Some screens get a too ...
0
votes
0answers
186 views
Android making basic home screen launcher application
I want to make my application home screen launcher. Is there any basic example shows how to make a home screen launcher application in Android?

