Android :: App Actvities Installed As Multiple Icons
Aug 20, 2010
My Android App has 2 activities. A login screen and a search screen. When i deploy the app on emulator or on my device, i see 2 icons for same app. When i click on icon 1 it opens screen 1 (login screen) and When i click on icon 2 it opens screen 2 (search screen). By logic when i login it should show the search screen. Not sure when i'm making the mistake, would be of help if some one can point me in right direction.
View 1 Replies
Oct 15, 2010
I am developing an android app w/ Eclipse.Whenever I run the app on my phone or the emulator, four application icons are installed on the device.I am guessing it is related to my manifest file which has three activities (3 are for tabs).When I uninstall the app, all of the icons are removed from the phone.Upon a reinstall, all four show back up.
View 2 Replies
View Related
Mar 6, 2009
How many activities do you have? Do more than one of them declare themselves as launchable like you can see below?
View 2 Replies
View Related
Nov 30, 2009
Here is my Problem :
I want to pass multi dimensional String array between two activities or pages.
I already tried with bundle.putextra like methods. But those allow only one dimensional string array.
I really hope you can help me with example java code on this . Here is my String array, final String[][] arr2={{"1","pavan"},{"2","kumar"}, {"3","kora"}};
View 4 Replies
View Related
Dec 10, 2009
I seem to be having problems locating icons for apps installed via HTC Sync.
After installation, icons for the programs don't appear in the programs list. I've confirmed they're installed, as they show up in the manage apps list. Any programs installed via the Market show up on the programs list.
View 2 Replies
View Related
Apr 23, 2012
I didn't find them, except in the apk files in /data/app/, but then I've to extract every app.
View 3 Replies
View Related
Mar 29, 2010
In Bluetooth application I am noticing it is displaying multiple icons not number. I updated number of notification object,then it was displaying number and but also multiple icons.how to disable this multiple icons?
View 1 Replies
View Related
Feb 11, 2010
Trying to find the gmail and the regular email icons for the stock programs installed on the nexus one are. Anyone know where they are located or have a source?
View 6 Replies
View Related
Jul 17, 2010
I have an application with two activities and I'd like to be able to have two icons appear in the launcher, each launching the respective activity within the app.Specifically, I want one icon to launch my main app, and another icon to launch my settings activity. Is this possible?This creates two launcher icons, but they both run my main app instead of the second icon running my settings app. I've tried just having the launcher category but then I don't get an icon so it looks like I need the main action as well.Is this the right approach or should I be declaring two applications in the manifest instead?
View 2 Replies
View Related
Aug 20, 2010
I have a single Android application that houses a suite of applications. I want each application to install with its own launcher icon, so I have a few activities with the same intent filter.It works just fine if I close out of an application using the back button. Each launcher icon starts a different activity. However, if I simply send the application into the background using the home button and then try to start a different activity,the one I put into the background is brought to the foreground instead of the correct activity starting.Can I make the multiple icons work or do I need to create a central activity as a way to start all the sub-applications?
View 1 Replies
View Related
May 18, 2012
I've searched to no prevail. id like to start developing apps but am having issues getting the environment set up. I have the jdk properly installed.
issue 1 (main major ):
I've installed the android sdk from multiple sources, but when i try to start sdk tools, the command prompt flashes/ opens briefly and i get this message:
"Failed to execute toolsandroid.bat: The system cannot find the file specified."
Do i need to change a PATH variable or something...
I cannot get eclipse to run. when i try to open the exe file ( because there is no short cut icon...?) it gives a message about not finding a companion library... ive try to change the properties in the file that is supposed to fix it, but it was already set the way its supposed to be. this is not major as i can use a different IDE.
so im completely lost as to th sdk tool. I just tried adding the file path to the android sdk ( PATH variable) and it still did not work... I also just tried start the android,bat file and the cmd promt flashes briefly saying somthing about xcopy is not an operable command...etc couldn't read all of it... I am on windows 7 home premium
View 9 Replies
View Related
Dec 28, 2009
i am having a slight problem that just started happening this morning when i turned my phone on..I saw that i had a text and the little smile voice bubble appeared like normal in the notification panel but also an envelope (NOT email) also appeared..i clicked the smile icon to bring me straight to the text and that went away like it was supposed to, but the envelope would not go away..anyone know how to get this "unread message" icon to stop coming up and just have the smile bubble come up again.
View 7 Replies
View Related
Jan 5, 2010
How can I highlight multiple desktop icons at once? And once done, can I "mass" delete them by dragging to the trash like I can with only one?
View 4 Replies
View Related
Jul 19, 2010
does anyone know how to delete multiple icons for certain apps that are in my slide up menu? They don't show up as mulple apps in manage apps. Some icons are the built in gallery icons.
View 3 Replies
View Related
Dec 15, 2009
I've been playing around with Home++ lately and have really been liking the feel of this home replacement. Currently I'm using DxTop and while I am really impressed with it as well, I feel like changing it up a bit.
I'm just wondering if having both of them installed on my phone is going to kill the battery faster, make it lag, or generally cause any issues with normal phone operation. Also, if I select to use one of them as my default home screen, does it automatically stop the other one or will I have two home replacements running at once?
View 9 Replies
View Related
Sep 13, 2010
is there an easy way (api) to do this?
View 6 Replies
View Related
May 13, 2010
Is there a way to change the HTC Icons like camera, photos to the stock Android Icons?
View 5 Replies
View Related
Oct 28, 2013
I would do this: [URL] .... (created with paint)
Because I get to edit files, but I am looking for a long time without finding how to put ALL the icons on the left, and keep only the icons on the right as in the picture.
View 1 Replies
View Related
Nov 25, 2010
I notice that the home screen is customizable but not the four applications on the bottom, the call, email, browser and applications. How would I change those icons with different icons? Mainly the email and browser. How do I turn off or at least severly limit the data that goes to and from my phone. I do not have wireless and am just a bit paranoid about going over my data limit. I got the phone from work and this is my first smartphone so I am a bit nervous about anything I do on it.
View 3 Replies
View Related
Jul 27, 2010
Is there any way I can extract the .apk for an app I downloaded and installed from the market? So I can store the .apk on my PC
View 7 Replies
View Related
Aug 16, 2010
Are there design guidelines to help decide if an application with multiple views should be designed with multiple activities or just one activity and control the back button itself.
I've tried both. My most complex applications using one activity per screen. However, now that I'm successfully written an app with just one activity and handling the back button myself, I don't see any compelling reason to use multiple activities. The one activity application is much simpler and more straightforward.
What advantages of multiple activities am I missing?
View 8 Replies
View Related
Feb 18, 2010
I'm working on an application using xml layouts.
I wish to know which is better:
1. Use few activities and change its contentview
2. Use an activity for each 'view' needed
If both works, in which case which option would be better?
View 1 Replies
View Related
Jul 1, 2010
I'm planning to develop and app that presents the users with several different screens (of different information).
Was wondering what would be the best way to implement this?
Is it better to have separate XML layouts and an activity to display and allow the user to interact with each screen of data?
OR would handling all of these in the same activity be more efficient (and dynamically load / unload each layout)?
View 2 Replies
View Related
Nov 7, 2010
hey there i am new to this site and new to the android platform. I have figured everything out for the most part. but i purchased the launcherpro plus or whatever for my samsung epic and i customized the dock icons. They are really small i don't know why. but is there anyone out there that knows how to make the dock icons bigger?
View 8 Replies
View Related
Feb 2, 2009
I am trying to launch an activity from another activity .. Within the com.android.SingleLauncher..
I have activity launch code as ..
CODE:...........
I have set the android:multiprocess="true" in the AndroidManifest.xml of TargetSL I don't seem to see the multiple instances of TargetSL, which i am expecting ..
All i see is 2 process, where i was hoping to see an instance of TargetSL, for each launch that was invoked by the singleLauncher!
View 3 Replies
View Related
Sep 28, 2013
is there an auto hide home screen icons app like Auto hide desktop icons for PC? I found some but its not like i want. I want that the icons should stay hidden until i tap on the home screen.
View 2 Replies
View Related
Jun 7, 2010
Is there a place I can download the android app icons as .ICO?
I am trying to replace my osx folder icons.
these icons:
View 2 Replies
View Related
May 13, 2009
how to know whether an app is installed or not? Can an app access the list of application in "My Downloads"?
View 12 Replies
View Related
May 24, 2009
I would like to check from my app what api is installed on the phone for example: a=getapiv(); // a=1 (api 1.1) a=2 (api 1.5) so i can see if Cupcake is installed or not and disable or enable specific services on the run.
View 6 Replies
View Related
Jul 21, 2010
Assuming of course that the phone date and time were/are correct, is there a way to know when an app has been installed?
View 1 Replies
View Related