Android is Google's software stack for mobile devices. Please use the Android-specific tags such as [android-intent], not [intent]. For non-developer questions, see http://android.stackexchange.com

learn more… | top users | synonyms (6) | android jobs

1052
votes
13answers
175k 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 ...
972
votes
7answers
235k views

Difference of px, dp, dip and sp in Android?

Can anyone explain the differences between the px, dip, dp and sp units in Android?
968
votes
7answers
138k views

Proper use cases for Android UserManager.isUserAGoat()?

I was looking at the new APIs introduced in Android 4.2. While looking at the UserManager class I came across the following method: public boolean isUserAGoat () Used to determine whether the ...
767
votes
46answers
268k 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 ...
639
votes
18answers
177k views

Is there any way to run Python on Android?

I like the Android platform. Actually, with some friends, we even participate to the ADC with the Spoxt project. But Java is not my favourite language at all. We are working on a S60 version and this ...
614
votes
23answers
226k views

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 ...
607
votes
34answers
202k views

Android SDK installation doesn't find JDK

I'm trying to install the Android SDK on my Windows 7 x64 System. jdk-6u23-windows-x64.exe is installed, but the Android SDK setup refuses to proceed, because it doesn't find the JDK installation. Is ...
572
votes
14answers
222k views

Saving Activity state in Android

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; ...
544
votes
16answers
240k views

How do I do a lazy load of images in ListView

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, ...
474
votes
6answers
103k views

'Must Override a Superclass Method' Errors after importing a project into Eclipse

Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
451
votes
23answers
98k views

Stop EditText from gaining focus at Activity startup

I have an Android Activity, with two elements: EditText ListView When my Activity starts, the EditText immediately has input focus (flashing cursor). I don't want any control to have input focus ...
447
votes
17answers
102k views

Best practices for unit testing Android apps [closed]

I'd like to unit test my Android application but I found that test driven development in Android is far from trivial at the moment. Any tips, tricks, war stories for building light weight and ...
432
votes
12answers
207k 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 ...
405
votes
20answers
195k 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?
403
votes
16answers
161k 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 ...
396
votes
48answers
225k 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; .... ...
384
votes
21answers
282k views

How to get screen dimensions

I created some custom elements and I want to programmatically 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 ...
370
votes
30answers
113k 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, ...
362
votes
13answers
131k 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 ...
335
votes
60answers
348k 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; ...
311
votes
14answers
71k views

How to rotate the Android emulator display?

How can I rotate the Android emulator display to see it in landscape mode?
309
votes
8answers
139k views

Where can I browse Android source code on-line? [closed]

Particularly, where can I browse the source code for the contact application? Is the only way to go to download all there is?
308
votes
7answers
183k 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 ...
305
votes
21answers
97k views

Android error: Failed to install *.apk on device *: timeout

I'm getting this error from time to time and don't know what causing this: When trying to run/debug an Android app on a real device (Galaxy Samsung S in my case) I'm getting the following error in the ...
295
votes
6answers
118k 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 ...
286
votes
18answers
87k 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 ...
284
votes
30answers
200k views

Strange out of memory issue while loading an image to a Bitmap object

I have a list view with a couple of image buttons on each row. When you click the list row, it launches a new activity. I have had to build my own tabs because of an issue with the camera layout. The ...
283
votes
6answers
132k views

How to create an AVD for Android 4.0

Android 4.0 is now released. I have just updated my ADT plugin and downloaded the 4.0 SDK. But when I try to create an AVD for Android 4.0, Eclipse tells me 'Unable to find a 'userdata.img' file for ...
278
votes
17answers
195k views

How do I center text horizontally and vertical in a TextView in Android?

How do I center the text horizontally and vertically in a TextView in android, so that it appears exactly in the middle of the TextView?
268
votes
21answers
131k views

How to handle screen orientation change when progress dialog and background thread active?

My program does some network activity in a background thread. Before starting, it pops up a progress dialog. The dialog is dismissed on the handler. This all works fine, except when screen orientation ...
257
votes
20answers
232k views

How to call SOAP web service in 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 ...
253
votes
13answers
118k 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 ...
250
votes
10answers
140k 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 ...
249
votes
18answers
102k views

Activity has leaked window that was originally added

What is this error, and why does it happen? 05-17 18:24:57.069: ERROR/WindowManager(18850): Activity com.mypkg.myP has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@44c46ff0 ...
248
votes
7answers
62k views

How to ship an Android application with a database?

If your application requires a database, and comes with built in 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 ...
238
votes
4answers
49k views

what is the difference between match_parent and fill_parent property in android

I'm little confused about two properties match_parent and fill_parent of layout. It seems both are same. I want to know how this properties are different? TIA
233
votes
8answers
130k views

Android - disable landscape mode?

How can I disable landscape mode for some of the views in my Android app?
230
votes
9answers
136k views

decompiling DEX into Java sourcecode

Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?
220
votes
13answers
132k views

Does Android support near real time push notification

I recently learned about the ability of iPhone apps to receive nearly instantaneous notifications to apps. This is provided in the form of push notifications, a bespoke protocol which keeps an ...
219
votes
7answers
19k views

What are your experiences selling on the Android Market? [closed]

I've been hearing some good things about Google's Android Market recently, and I might look into developing for android (currently develop for iPhone OS) at some point, so here are my points to ...
207
votes
2answers
50k views

Navigation Drawer is official | Slide out menu like Android Google+ and YouTube style slide menu (Not like FaceBook) | SlidingMenu

UPDATES I'll keep updating this topic as a lot of people are interested, they will be at the bottom of this post. End Goal/Question I'm really trying to see if anyone knows how to implement a ...
202
votes
28answers
109k views

Failed to allocate memory: 8

From today, when I tried to run an app in NetBeans on a 2.3.3 Android platform, it shows me that: Failed to allocate memory: 8 This application has requested the Runtime to terminate it in an ...
201
votes
13answers
152k views

How to hide the title bar for an Activity in XML with existing custom theme

I want to hide the title bar for some of my activities. The problem is that I applied a style to all my activities, therefore I can't simply set the theme to @android:style/Theme.NoTitleBar. Using ...
201
votes
3answers
92k 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 ...
201
votes
9answers
133k views

android.os.NetworkOnMainThreadException

In the below code I got an error when running my android project for RssReader. URL url= new URL(urlToRssFeed); SAXParserFactory factory =SAXParserFactory.newInstance(); SAXParser ...
199
votes
4answers
38k views

Background ListView becomes black when scrolling

I have created a specific List which exists out of the following elements to create a scrollable list with every row containing a Image on the left side and some text on the right side : To begin ...
198
votes
9answers
92k views

How to align views at the bottom of the screen?

Here's my layout code; <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" ...
193
votes
21answers
12k views

How to avoid reverse engineering of an APK file?

I am developing a payment processing app for Android, and I want to prevent a hacker from accessing any resources, assets or source code from the APK file. If someone changes the .apk extension to ...
192
votes
11answers
107k views

The Android emulator is not starting, showing “invalid command-line parameter”

I made a simple "Hello World" program in Eclipse. I added nothing to a Java file and only added a text view in file main.xml as //main.xml file <?xml version="1.0" encoding="utf-8"?> ...
191
votes
12answers
75k views

What is Context in Android?

In Android programming, what exactly is a Context class and what is it used for? I read about it on the developer site, but I am unable to understand it clearly.

1 2 3 4 5 6731