App Runs On Emulator But Can't Click On Anything
Jun 3, 2011
Yesterday, my app worked fine on the emulator, but today after the app launches, I can't click on anything when the app runs. The code hasn't changed, my OnClickable event is wired up correctly and there are no errors in the compiler. I can't hit a breakpoint in the debugger. All the output in the console looks normal.
View 2 Replies
Apr 9, 2010
I have an app that has a few checkboxes in the settings and then compiles a remote sql based on the checkboxes selected. i ran it in the emulator and it's fine. but then i exported it and published it as an app, and the same checked boxes aren't being passed correctly. i wonder if it's a caching issue or something. tried deleting the apks a few times and republish but to no avail. i "fake-edited" the source java and then export again, still no difference.
I'm kind of new to eclipse but is there a force build option? i only see build-automatically option under project but not sure how i can make sure that the apk exported is the same as run in the emulator
edit the emulator is version 1.5, and my phone is nexus one running 2.1- not sure if that makes a difference
View 1 Replies
View Related
Jul 16, 2009
The emulator does not install with any IM app.For testing purposing, I would like to have an IM application on the emulator.
how can I get one of these IM apps run on emulator? http://www.gandroidmix.com/im-clients-for-android-os/
View 2 Replies
View Related
Nov 24, 2009
I have written a simple Authenticator service to work with the new AccountManager API introduced in 2.0. When I launch a test app that uses the authenticator the authenticator service is launched (as expected) and it's onBind method is called. However, if I run my test application a second time in the same emulator (without restarting the emulator) my service is not launched and onBind is not called.
So far the only way I have found to get my service to launch and onBind to call again is to restart the emulator, which is a very time consuming process. I have looked at the Devices view in Eclipse and ensured that all of my processes have been killed, just in case one of them was just being rebound to or something.
View 2 Replies
View Related
Oct 6, 2012
I'm looking for a Play Store .apk that will run on my Android (ICS) emulator. The .apk from my phone and tablet did not work. I'd like to download apps directly to my Emulator.
View 1 Replies
View Related
Mar 10, 2010
is there a terminal emulator app that runs on this fone that is free? or is it only the better terminal emulator pro on the android market that can still run on 1.5?
View 3 Replies
View Related
Jul 22, 2010
The problem I am having is that when I run a FWVGA or WVGA sized emulator it sometimes runs at a MDPI size instead of HDPI. Here is an example with pictures. I create the AVD with the proper hw.lcd.density setting and screen size and it randomly does this. There doesn't seem to be a pattern. I used to be able to just delete the AVD and create it over again and it would fix itself for a while but now it's getting worse.
View 1 Replies
View Related
Oct 12, 2009
I am running Eclipse on Win32 and my Android emulator on Linux.
Is there a way to use Win32 eclipse to debug code on the emulator that runs on Linux?
View 3 Replies
View Related
Sep 8, 2010
I have an app the runs fine on my emulator and my incredible with android 2.2. Users say my app won't run on the galaxy s. What options exist to troubleshooting this? Is there a special agreement for galaxy?
View 3 Replies
View Related
Feb 6, 2010
If I run several emulators with -no-window option in one machine. The command "adb devices" shows:
List of devices attached
emulator-5554 device
emulator-5556 device
emulator-5558 device
However, according to this output, I can't tell the difference between each emulator device at all. I need to know which emulator runs on what AVD, then I can install APKs or send commands to the emulator.How can I recognize each emulator device or get the serial number of emulator after it runs?
View 4 Replies
View Related
Apr 12, 2009
I have been developing on the windows Android SDK until recently I have moved to the Linux SDK. Once I launch the application from eclipse, I click the 'x' of the emulator window and an empty window persists, whereas this does not happen in the windows. I have to manually kill thru the shell (kill -9 "<emulator process id>") Has anybody faced this problem on ubuntu 8.04, with android SDk 1.1?
View 3 Replies
View Related
Apr 1, 2010
when I click on one item in the ListView that item's background changes to light gray, but when I continue to scroll through the list every 4th item has the background changed to light gray even though those other items have not been clicked. How do I make only the item I clicked be effected by the click?
ListView lv = (ListView) findViewById(R.id.resultsList);
lv.setAdapter(new ArrayAdapter(this, R.layout.resultitem, (String[])labelList.toArray(new String[labelList.size()])));
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent, View view, int position, long id) {
TextView tv = (TextView)view.findViewById(R.id.result);
tv.setBackgroundColor(Color.LTGRAY);
tv.setTextColor(Color.BLACK);
View 1 Replies
View Related
May 3, 2010
I have a ListView in my Activity. I am trying to catch both a click and a long click (which should bring up a context menu).
ListView lv = (ListView) findViewById(R.id.MyListView); ... lv.setOnItemClickListener(this); lv.setOnCreateContextMenuListener(this); ...
I notice that if I have both the click and long click listeners up, I won't ever get the long click listener (i.e. the context menu). If I remove the setOnItemClickListener() call, i get a call into
@Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe@googlegroups.com For more options, visit this group at
View 4 Replies
View Related
May 31, 2010
I have just started my career as an android programmer, and am currently relying heavily on the sample code and api examples. I have been working with this api example, to produce an expandable list of items (note this example does not use the ExpadableListView).In playing with the example, I tried to add another widget that would become visible and be gone at the same time as the text (mDialogue in the sample code). This works well with another TextView, but as soon as I tried to add a button widget, it stopped working. The list would expand on first click, showing my hidden TextView and Button, but it will not disappear on further clicks. The button is however, clickable, and I was able to set up an onClick listener to change the button text back and forth.I'm starting to wonder, is it just not possible to have a clickable item inside a clickable list item? Or is there some kind of work around? Would it solve my problem if I used ExpandableListView?
View 1 Replies
View Related
Dec 19, 2009
When I DL'd the GDE app, I accidentally set my stock droid "HOME" screen as the default screen when the popup box came up asking me to choose between stock Home and GDE. Now when I click on GDE and click the home button, it switches back to the stock Home screen. How to I switch the settings now to set the GDE app as the new home screen?
View 15 Replies
View Related
Nov 6, 2010
How fast does everyone run set CPU on your phones? I've been trying to put it up to 787 with the Kernel in the Raptor download section, but I keep getting Kernel errors and it reboots. with 729 max it runs smooth, never a problem.
View 33 Replies
View Related
Aug 7, 2010
Ok so here's the deal guys and gals, I am trying to have my phone assist me with my running. There are plenty of apps that will track my run via gps if I bring my phone on the run with me, but I don't wanna do that. I want to be able to map a course out, enter how long it took me, save the map and even share it with friends. Ideally the app would have the gps running features I mentioned above just on case I ever do start bringing my phone with me. Here is an example of what I mean in website form (unfortunately they make a sweet app for the iphone but their android version is pretty awful right now.MapMyRun.com -
View 9 Replies
View Related
Feb 19, 2010
Does anyone know if there is a way to identify (in code, not LogCat) when the GC has run? Perhaps an intent is fired? I could analyze the LogCat output, but it would be ideal if I could determine when the GC has run from my code.
View 2 Replies
View Related
Aug 16, 2010
If I call to a ContentProvider from a Activity, which thread is ContentProvider running in?
E.g. What happens if the Activity is killed and a query is executing in the ContentProvider? Say that you have a slow network query f.ex.
View 1 Replies
View Related
Apr 21, 2012
Essentially, my program has two EditTexts, a Button, and a TextView. You input a number/string into the EditText, and an output is supposed to be shown in the TextView. However, all i get is a 'There is no Department'.
View 6 Replies
View Related
Sep 12, 2010
When I am developing for Android and repeatedly running and/or debugging an Android app in the emulator then about every two hours or so I get an Out-of-memory exception, occasionally also an out-of - resources- or out-of-GWT-handles exception. At that point one can only stop and restart eclipse. Apparently the ADK must be doing something wrong, because I have been developing with Eclipse now for 5+ years and I normally never see this. ADT is a really the exception here. Is there any setting or patch that helps top avoid this? I have already given it more heap space (750M) to stretch the time between these hickups a bit, but that approach isn't really sustainable.
This is using Eclipse 3.5 (Galileo) and the Android SDK r06 running a FroYo AVD.
View 3 Replies
View Related
Jul 23, 2010
For my first application, the only testing I've really done to this point is on my Droid X. I want to think through the various hardware differences and come up with a testing plan that is representative of the Android landscape. My initial thought is to create a list of emulators that have unique qualities such as screen size and SDK levels. I've noticed very quickly how the UI of my application will need some adjustment when viewed on devices that don't carry a 4.3" screen. How have you approached this hurdle in your own development? Chris Stewart cstewart...@gmail.com http://www.androidsdkforum.com *Want to advertise your Android application for free? Email me for details!*
View 9 Replies
View Related
Jan 14, 2010
After deleting a phone device from the emulator, I can no longer hit the green triangle button in eclipse and have it launch my application in the emulator. I had been developing for 2.0.1, but then decided to try my app out in 2.1. I created a phone device for 2.1 and tried running it. I encountered some problems. Eclipse pops up a dialog box: Problem Occurred, Launching "my app" had encountered a problem. An internal error occurred during: 'Launching my app". When I look at details, it says: An internal error occurred during: "Launching Pingo". java.lang.NullPointerException.
View 3 Replies
View Related
Dec 8, 2009
I m a programming noob here..i need help on some issues here. I understand that Android is built from Java. I need to know if i can run a java application on android? Or can i run the application with minor change to the current coding? I read about Java ME can run on android but what abt .Jar file?
View 6 Replies
View Related
May 21, 2009
I forgot to mention that I am using a third party JAR file that includes about 2900 classes.
View 3 Replies
View Related
Dec 6, 2009
Cant find an mp3 player that runs visualizations. What the heck is going on here? Even the crappy LG chocolate has an mp3 player with visualizations. What the heck is going on?
View 25 Replies
View Related
Dec 31, 2011
Any way (or an app) to get a speedometer to display while the Google GPS is running - on the same screen?
View 1 Replies
View Related
Nov 3, 2010
I have had shoddy internet lately in places that I should not. So I try to update my prl and profile and it just sits there saying "updating." When i cancel out, the phone moves super slow until I do a battery pull.I also can not enable 4g because it makes my EVO run super slow basically horrible.This is with 2.2.
View 2 Replies
View Related
Aug 21, 2010
Been trying to update the radio and apply the latest ota , every time I get to apply the update.zip it runs and eventually stops with something similar to the following:
"Can't apply radio"
(No room on device)
"Can't apply firmware"
(No room on device)
Then I can reboot and I get the new droid screen, new widgets, etc. But no wifi, etc. I've done this about 10 times now so I admit I'm bit foggy after 18 hrs of reading and trying to apply froyo.
View 8 Replies
View Related
May 24, 2010
Seems like since 2.1 my Droid runs hot when doing extended surfing or using the car dock. It gets very hot in the car dock (with GPS and navigation running). Combine that with the heat effects of the sun and the Droid gets very hot. Any one else notice this? Seems like this would be bad for both the Droid and the Droid battery. Normal?
View 17 Replies
View Related