Android :: Multiple Program Shortcuts Show Up In Its Menu / Avoid It?
Jul 7, 2010
In my application I have a number of Activity classes. When I run on emulator (or install to a device) a corresponding number of program shortcuts show up in the programs menu. Why does this happen and how can I avoid it?
View 2 Replies
Feb 20, 2010
So I got Eris yesterday and I have not put the thing down. Been scanning QR codes and messing around with it. Now the all programs menu, is there anyway to remove shortcuts from that menu?
View 5 Replies
View Related
Mar 3, 2010
I facing problem with multiple process running for my application. Can any one help me to avoid creating multiple process or restricting process creation to one.
Some times I am seeing two process instances of my package in the process list. I want to avoid this.
View 2 Replies
View Related
Aug 8, 2010
Is it a good practice to define the alphabetic shortcuts (alphabeticShortcut) of the menu items?
I ask because I've never used them in any of the Android devices that I have owned, even those that have a physical keyboard. Is there any reason to define them? Maybe an accessibility use-case than I'm not seeing?
View 1 Replies
View Related
Sep 20, 2009
I'm writing program for Android (SDK 1.5). I would like to know how to add/register one of my program activities in "Home Screen -> Menu -> Add-> Shortcuts" (or on Hero "Home Screen -> Menu -> Add to Home-> Shortcut") so that user will be able to add it to his home screen. Is there an Intent Filter or any other way to achieve that?
View 2 Replies
View Related
Nov 1, 2010
I have a contact list from GMail. I have a contact list named Corporate (whatever that is). I have a contact list from my ActiveSync business account (Exchange server). I have a contact list from Phone.How can these be reduced to one? Certain programs (Better Cut) see contacts from one list but not others.
View 1 Replies
View Related
Apr 18, 2012
So I have cyanogen on my desire s and I was wondering how I could change the shortcuts in the dropdown menu from the top of the screen. At the moment I have WiFi, GPS, Bluetooth and a sound shortcut. I want to put a short cut to be able to turn my mobile data on and off quickly.
View 2 Replies
View Related
Aug 26, 2012
when I connect my SGS2 or my sons Exhibit 2 to my windows 7 laptop. The pc recognizes the phones, I see all the files, from adobe-digital-editions to Zedge. The problem is that they show up under Removable Disk (F as "Shortcut" and size is 2kb each. I cant open or move anything to them. I'm thinking its something on the pc side because 2 phones are doing this.
A500 using Android
View 24 Replies
View Related
Jul 19, 2012
I have about 150 apps installed, but only 30 of them are currently on the homescreen.
Is there a way to add the remaining 120 at once to the homescreens?
If I would have to do it manually (Samsung Galaxy Tab 10.1) it would take at least an hour to do (adding one shortcut is extremely slow, as my tab needs about 10 seconds to display the list of apps alone when creating a shortcut).I don't have to do it manually for each app.
View 3 Replies
View Related
Nov 15, 2009
Is there a good program to backup your all your apps, files, shortcuts, bookmarks and personal settings. I know Astro has a "backup" function but I don't know what it actually backs up. I know you can back up your contacts Google.
I guess what I'm asking is if there's a way to "clone" your Droid, not just the SD card.
View 10 Replies
View Related
Dec 12, 2009
Is there an app that shows me the nicknames I set up instead of user IDs? I have over 200 friends and no screennames. I tried the HI Yahoo Beta, but it never loaded my list. Tried ebuddy, but no nicknames. I really just need it for yahoo, I like the HI AIM...
View 12 Replies
View Related
Aug 15, 2010
I have 3 facebook accounts want to be able to switch between them with one app.
View 1 Replies
View Related
Dec 26, 2009
I think I must be missing something really basic here, but if my program dies, DDMS doesn't tell me which line it died on - all the stack references are inside the Android source code giving "source not found" errors.
View 2 Replies
View Related
Oct 28, 2010
I create one TextField.When i click the TextField i wish to open the menu .how to do this ?
View 2 Replies
View Related
Nov 11, 2009
In my application I'm using 3 layouts and one Java file. I'm creating a menu. I want to show menu for only one particular layout. The other layout should not get the menu. what should i do for that? can any one know about this?
View 3 Replies
View Related
Dec 14, 2009
After using home++, when i hit the arrow to bring up all my apps, the only app that show is "settings" . i can get to my other apps that are shown on a home screen, but the ONLY app showing on the pull down screen is settings! i shut down, removed battery, and restarted twice, but still no luck.
I know a lot of others use home++, so is there something in the settings that went wrong, or what??! help! i love the home++.. when it works!
View 4 Replies
View Related
Mar 3, 2010
I've noticed that some users have not found my app's preferences sub menu, so I want to show that sub menu when the user first-time-ever starts the app.
Since onCreateOptionsMenu() would not have been called yet, how can I programmatically show such a sub menu?
BTW: openOptionsMenu() is not what I want because I want to open a sub menu. I suppose its part of the solution though. However, I get an exception when I call it:
Caused by: android.view.WindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running? at android.view.ViewRoot.setView(ViewRoot.java:468) at android.view.WindowManagerImpl.addView(WindowManagerImpl.java: 177) at android.view.WindowManagerImpl.addView(WindowManagerImpl.java: 91) at android.view.Window$LocalWindowManager.addView(Window.java:424)
even though, at the same point in the code, I can successfully open new AlertDialogs.
View 5 Replies
View Related
Dec 8, 2009
How to show menu items automatically (without clicking menu button) when the layout is viewed?
View 5 Replies
View Related
Sep 12, 2010
This might be a simple question, but I've been looking around and can't find the answer,
well, as my title said, is there any code to show the context menu on the android from a code, instead press the menu button? eg. when i touch the screen then it'll call the context menu?
View 1 Replies
View Related
Aug 5, 2009
I have written my input method on lines of LatinIME. My IME "MyIME" has a service and an activity similar to LatinIME.
Installing it to emulator via eclipse does not seem to work and hence I have tried the following approaches.
MY GOAL: ~~~~~~~~ All I need as the first step to know that I am heading in the correct direction is that I should be able to see "My IME" as one of the available input methods. For example, on any EditText, when I "long click & release", the Input Method menu that pops up must also show "My IME" as one of the available input methods.
However so far the pop-up only shows "Android keyboard" (LatinIME). Hence I tried the following approaches.
Approach-1: =========== I checked out the andorid source code and built & ran it successfully to make sure I got the build process right. I created my project in ~/mydroid/packages/inputmethods/MyIME. It has the package structure 'com.android.inputmethod.myime' (to be in line with Android's package structure, I am not sure if this is required).
I ran a build using "make". Make succeed in compiling MyIME, just like LatinIME and all the android tools were also created. However looking at the build output, LatinIME was installed into /system/app/ LatinIME.apk while MyIME was not installed at all.
Question with respect to approach-1: ------------------------------------ 1. How to get the build process to install MyIME into /system/app as MyIME.apk?
Since install did not happen via the build process, I started the newly built emulator (and newly built ddms to watch logs) and used follownig install approaches:
Approach-2: =========== I ran 'ant debug' to get MyIMESettings-debug.apk. Then I ran 'adb install MyIMESettings-debug.apk'. The attempt failed with the message "Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]". Hence I tried the approach-3.
Question with respect to approach-2: ------------------------------------ 2. Why did the install fail when the project was built using 'ant debug'? Is it some thing to do with debug signature?
Approach-3: =========== The build process had created an APK file but hadn't installed it (/ mydroid/out/target/product/generic/obj/APPS/MyIME_intermediates/ package.apk) I renamed that package.apk to MyIME.apk and installed it using "adb install MyIME.apk". The install succeed. However, the adb install put my APK under /data/app with the name "com.android.inputmethod.myime.apk" instead with name MyIME.apk
Question with respect to approach-3: ------------------------------------ 3. Is there any way to get "adb install MyIME.apk" to install into / system/app folder?
Again, what I am trying to achieve is mentioned under "MY GOAL".
View 2 Replies
View Related
Jan 21, 2009
I am having trouble setting one menu item/button to run different actions based on other actions currently running(ie having the button toggle actions). what I am trying to do is have a menu item to toggle wifi on and off but when I try to run if/else statements on the menuitem click it force closes the app.
View 2 Replies
View Related
Jul 22, 2010
How to remove or delete games at menu there. is that wanna any program or?
View 2 Replies
View Related
Jul 28, 2010
I don't even know what to call it. I know its the one with brightness, 4g, wifi, bluetooth, gps, and something else, ALL in one widget and I think it comes native on the EVO. Is there a button press to get it to show up?
View 2 Replies
View Related
Feb 9, 2010
I want to show a menu similar in look and feel to the sub-menus. I want the menu to come up when we tap on the screen. Is it possible to have sub-menus displayed without creating the main options menu? I do not want to use context menus for this.
View 3 Replies
View Related
Apr 18, 2010
I have a TextView with its MovementMethod set to LinkMovementMethod. Text added to the TextView is a combination of normal text and URLs. For URLs, I would like to offer a context menu when the URL is long pressed for doing things such as copying the address. I've had a look at the source for LinkMovementMethod but it doesn't seem to have any long pressed related code I could override. Any ideas on how to go around achieving this?
View 1 Replies
View Related
Sep 1, 2010
I am developing one Map based application and in this application i want to draw Multiple Overlay Item(With Marker) on map.so anyone can told me the efficient way of doing it.
View 1 Replies
View Related
Sep 14, 2010
How to show two dialog at the same time? i don't to use Multiple Select at one dialog.
View 2 Replies
View Related
Feb 8, 2012
i need to know what is this menu "show all" in permissions screen of any application before install to phone?
View 2 Replies
View Related
Jun 28, 2010
I'm using LauncherPro and was wondering if there's anyway to show unread SMS and unread mail (from combined multiple accounts) in the dock? Or is the only way to add a widget to the desktop?
View 2 Replies
View Related
Jul 31, 2010
How do you get running apps to show up in the notification drop down menu?
View 1 Replies
View Related