Tagged Questions
Android is Google's software stack for mobile devices, developed by Google and the Open Handset Alliance. Please use the Android-specific tags such as [android-intent], not [intent]. For non-developer questions, see http://android.stackexchange.com. Android Developers Contains the SDK downloads, ...
225
votes
11answers
145k views
Android - How do I do a lazy load of images in ListView [closed]
I am using a ListView to display some images and captions associated with those images. I am getting the images from the Internet. Is there a way to lazy load the images so while the text displays, ...
133
votes
17answers
122k views
Android: Strange out of memory issue while loading an image to a Bitmap object
I am not sure where to start to explain this one.
I have a list view with a couple image buttons on each row. When you click the list row, it launches a new activity. If you review some of my other ...
299
votes
11answers
143k views
How do I save an Android application's state?
I've been playing around with the Android SDK, and I am a little unclear on saving an applications state. So given this minor re-tooling of the 'Hello, Android' example:
package com.android.hello;
...
152
votes
9answers
90k views
Android: How to declare global variables?
I am creating an application which requires login. I created the main and the login activity.
In the main activity onCreate method I added the following condition:
public void onCreate(Bundle ...
63
votes
7answers
63k views
Sending Email in Android using JavaMail API without using the default/built-in app
I am trying to create a mail sending application in Android.
If I use:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
this will launch the built-in Android application; I'm ...
220
votes
27answers
68k views
Quitting an application - is that frowned upon?
Moving on in my attempt to learn Android I just read the following:
Question: Does the user have a choice to kill the application
unless we put a menu option in to kill it? If no such option exists, ...
184
votes
19answers
188k views
How to call SOAP web service with Android
I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
241
votes
9answers
130k views
Android - basic gesture detection
I've been battling to get 'fling' gesture detection working on my Android application today.
I've been looking at these sources;
Detect Gestures - Tutorial
SDK docs
Calculator Code
Nothing has ...
130
votes
8answers
66k views
What is the simplest and most robust way to get the user's current location in Android?
The LocationManager API in android seems like it's a bit of a pain to use for an application that only needs an occasional and rough approximation of the user's location.
The app I'm working on isn't ...
231
votes
11answers
104k views
Activity restart on rotation Android
In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of ...
421
votes
7answers
113k views
Difference of px, dp, dip and sp in android
Can anyone tell what is the difference between px, dip, dp and sp in android?
290
votes
15answers
123k views
How to close/hide the Android Soft Keyboard?
I have an EditText and a Button in my layout. After writing in the edit field and clicking on the Button, I want to hide the virtual keyboard. I assume that there's a simple, one- or two-liner to make ...
50
votes
7answers
96k views
How to call Android contacts list?
I'm making an Android app, and need to call the phone's contact list. I need to call the contacts list function, pick a contact, then return to my app with the contact's name. Here's the code I got on ...
194
votes
14answers
91k views
Is there a unique Android device ID?
Do Android devices have a unique id, and if so, what is a simple way to access it via java?
57
votes
5answers
49k views
How can I get zoom functionality for images?
Is there a common way to show a big image and enable the user to zoom in and out and pan the image?
Until now I found two ways:
overwriting ImageView, that seems a little bit too much for such a ...
49
votes
1answer
41k views
J2ME/Android/BlackBerry - driving directions, route between two locations
On Android 1.0 there was a com.google.googlenav namespace for driving directions:
Route - Improved Google Driving Directions
But in newer SDK it was removed by some reason...
Android: ...
192
votes
38answers
138k views
“Conversion to Dalvik format failed with error 1” on external JAR
In my Android application in Eclipse I get the following error.
UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.IllegalArgumentException: already added: Lorg/xmlpull/v1/XmlPullParser;
....
...
169
votes
5answers
71k views
How to discover memory usage of my application in Android
I would like to know how I can find the memory used on my Android application, programmatically.
I hope there is a way to do it. Plus I would like to understand how to get the free memory of the ...
21
votes
4answers
13k views
How to send image via MMS in Android?
I am working on a multimedia application. I am capturing one image through the camera and want to send that image with a text to some other number. But I am not getting how to send the image via the ...
395
votes
33answers
145k views
Slow Android emulator
I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but ...
141
votes
5answers
35k views
How to ship an Android application with a database?
If your application requires a database, and comes with builtin data, what is the best way to ship that application?
1) Precreate the sqlite database and include it in the apk?
2) Include the SQL ...
59
votes
7answers
60k views
Open an image in Android's built-in Gallery app programmatically
I am trying to open an image / picture in the Gallery built-in app from inside my application.
I have a URI of the picture (the picture is located on the SD card).
Do you have any suggestions?
...
67
votes
6answers
38k views
How to create Transparent Activity in Android?
I want to create a transparent Activity on top of another activity.
How can I achieve this?
29
votes
3answers
34k views
How to draw a path on a map using kml file?
Can I parse kml file in order to display paths or points in Android? Please could you help me with that?
This is kml sample code which I would like to display in android google map:
<?xml ...
210
votes
6answers
124k views
Standard Android Button with a different color
I'd like to change the color of a standard Android button slightly in order to better match a client's branding. For example, see the "Find a Table" button for the OpenTable application:
The best ...
158
votes
40answers
200k views
R cannot be resolved - Android error
I just downloaded and installed the new Android SDK. I wanted to create a simple application to test drive it.
The wizard created this code:
package eu.mauriziopz.gps;
import android.app.Activity;
...
4
votes
5answers
1k views
Using already created Database with Android
I have already created an sql lite database. I want to use this database file with my android project. I want to bundle this database with my application. Instead of application to create new ...
35
votes
8answers
63k views
Https Connection Android
I am doing a https post and I'm getting an exception of ssl exception Not trusted server certificate. If i do normal http it is working perfectly fine. Do I have to accept the server certificate ...
44
votes
8answers
58k views
Sending and Parsing JSON in Android
In the application I am developing, I would like to send messages in the form of JSON objects to a Django Server and parse the JSON response from the server and populate a custom listview.
From the ...
669
votes
14answers
116k views
“Debug certificate expired” error in Eclipse Android plugins
I am using Eclipse Android plugins to build a project, but I am
getting this error in the console window:
[2010-02-03 10:31:14 - androidVNC]Error generating final archive:
Debug certificate ...
188
votes
13answers
81k views
Any good graphing packages for Android? [closed]
With Android removing the Swing and AWT libraries from Java, I was wondering what solutions have been developed to display simple bar histograms, line graphs and other simple data visualizations in ...
53
votes
3answers
30k views
Download a file with Android, and showing the progress in a ProgressDialog
I am trying to write a simple application that gets updated. For this I need a simple function that can download a file and show the current progress in a ProgressDialog. I know how to do the ...
69
votes
6answers
37k views
how to pick a image from gallery (SD Card) for my app in android?
This question was originally asked for Android 1.6
i am working on photos options in my app.
i have a button and imageview on my activity. when i click the button it will redirect to gallery and i ...
5
votes
2answers
3k views
Android MediaPlayer works fine in our Custom audio Streaming application up to Android 2.1 but not in higher versions
EDIT:
Android 2.2 MediaPlayer is working fine with one SHOUTcast URL but not with the other one
I need to play audio files from external URLs(shoutcast stream). Currently the audio files are ...
189
votes
18answers
62k views
How do I obtain crash-data from my Android application?
How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running ...
13
votes
1answer
11k views
How to parse XML using the SAX parser
I'm following this tutorial.
It works great but I would like it to return an array with all the strings instead of a single string with the last element.
Any ideas how to do this?
28
votes
7answers
11k views
Android: Is software keyboard shown?
I need to do a very simple thing - find out if the software keyboard is shown. Is this possible in Android?
17
votes
2answers
10k views
Android and XMPP: Currently available solutions [closed]
I'd like to pose a question as to which XMPP library would be the best choice nowadays, for Android development.
I've been using the patched Smack
library from here as is
suggested in many other ...
64
votes
3answers
35k views
How to make a nice looking ListView filter on Android
I want a nice looking filter for my ListView in Android.
How can I do this?
147
votes
8answers
131k views
Android: How to get screen dimensions
I created some custom elements and I want to programatically place them to the upper right corner (n pixels from the top edge and m pixels from the right edge) therefore I need to get the screen width ...
46
votes
5answers
29k views
Changing Locale within the app itself
My users can change the Locale within the app (they may want to keep their phone settings in English but read the content of my app in French, Dutch or any other language ...)
Why is this working ...
24
votes
4answers
48k views
Android: ListView elements with multiple clickable buttons
I've a ListView where every element in the list contains a TextView and two different Buttons. Something like this:
ListView
--------------------
[Text]
[Button 1][Button 2]
--------------------
...
52
votes
4answers
46k views
How can I use external JARs in an Android project?
I have created an Android project and added an external JAR (hessian-4.0.1.jar) to my project. I then add the JAR to the buildpath and check it of in Order and Export.
Order and Export is ignored it ...
6
votes
3answers
2k views
Getting an issue while checking the dynamically generated checkbox through list view
I know that this question is already asked by other members and solution is also given by some members but the thing is that i didnt find any solution which is suitable for my app.
I am creating a app ...
2
votes
2answers
1k views
Android update 17 seems incompatible with external Jars
I just allowed my mac to do an update on its java installation and now some of my old jars (like javax.mail and apache.commons.httpclient is throwing class not found exceptions at RUN TIME!!! Meaning, ...
59
votes
8answers
22k views
Restful API service
I'm looking to make a service which I can use to make calls to a web based rest api. I've spent a couple of days looking through stackoverflow.com, reading books and looking at articles whilst ...
34
votes
7answers
39k views
Android ACTION_IMAGE_CAPTURE Intent
We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we ...
63
votes
12answers
49k views
Android: Tabs at the BOTTOM
I've seen some chatter about this, but nothing definite.
Is there a way to put the tabs in a TabWidget to the bottom of the screen?
If so, how?
I've tried the following, but didn't work:
a) ...
34
votes
8answers
40k views
How to get a list of installed android applications and pick one to run
I asked a similar question to this earlier this week but I'm still not understanding how to get a list of all installed applications and then pick one to run.
I've tried:
Intent intent = new ...
31
votes
1answer
25k views
How to render PDF in Android
In my application I will receive a byte stream and convert it to a pdf file in the phone memory. How do I render that to a pdf? And show it on an activity?