Tagged Questions

Android 2.2 is a minor platform release including user features, developer features, API changes, and bug fixes. For information on developer features and API changes, see the Android developers' page Framework API section.

learn more… | top users | synonyms

9
votes
2answers
6k views

Android; Geocoder, why do I get “the service is not available”?

I want to use the Geocoder in an android application, I've got the following piece of code to sample it : public class LocatorGeo extends Activity { /** Called when the activity is first ...
7
votes
2answers
3k views

Android 2.2 SDK breaks compatibility with older phones

I have recently updated my app to a build tarket of SDK version 8 in order to include the App2SD feature for my users. However I have had reports of devices on SDK 3 (1.5) having problems starting ...
5
votes
5answers
283 views

If I license my app with GNU GPL3, does that prevent me from selling it on android market?

I'm using Google Code to host my application code, its conveniant and the SVN repository means I don't have to worry about backups When you create a project on there you need to select a license, I ...
3
votes
3answers
337 views

How to check if all AsyncTasks finished?

I have 3 AsyncTasks and 1 ProgressBar. I want when any of task executes, the progress bar is visible and when all of them finish, the progress bar is invisible. In Java, there is ...
3
votes
1answer
444 views

JQuery doesn't work on WebView. (strange problem!)

I tried to include JQuery files in assets/scripts and on Internet, but the alert dialog doesn't show. I got the log output and make it output.html, it works in Windows (so strange!). What's the ...
3
votes
1answer
3k views

Android; MapView, how can I set default location?

Using the MapView in android, how can I set a default location, so that everytime I load up this application, it automatically centers/zooms location in on London?
3
votes
3answers
3k views

Problems when handling orientation changes

I need to handle orientation changes in my Android application. For this purpose I decided to use OrientationEventListener convenience class. But his callback method is given somewhat strange ...
3
votes
2answers
471 views

android 2.2 browser dont work pageY or PageX in ontouchend event

I have a web app that work perfect in android 2.1, when I upgrade to 2.2 the pageX property in ontouchend event, this is my code: menu1.ontouchend = function(e){ e.preventDefault(); if (e.touches && ...
3
votes
2answers
774 views

How Android 2.2 interacting with Flash 10.1 (how to use flash from my app)?

Hi! I'm searched adobe and android developers sites, but can't find any details on this. Is it possible to use Flash as a part of my app? E.g. like a widget/GUI element? Or it's integrated in ...
2
votes
1answer
121 views

Property animation in android < 3.0

Is there an easy way to implement property animation(e.g. animate "x" or "y" property from value1 to value2) in android < 3.0? I need to animate a visual control(Button or TextView), that needs to ...
2
votes
0answers
94 views

Using JavaScript in Android - will it slowdown activity?

Hello I what to make a small app for Android 2.2 that will display a chart with data that I'll get from an API. I didn't find a free library for Android that can draw the chart like I want and I was ...
2
votes
2answers
248 views

Why is the ContentObserver called multiple times?

I have following ContentObserver implementation for receiving and writing SMS, but it is called multiple times. Code: public class SMSObserverActivity extends Activity { protected ...
2
votes
0answers
402 views

Sencha Touch, OpenLayers, GeoServer: Wrong encoding on devices using Android 2.2

I have created a small test page using Sencha Touch, OpenLayers and I am recieving WMS/WFS data from a GeoServer. I have set the encoding on my HTML page to UTF-8: <meta http-equiv="Content-Type" ...
2
votes
1answer
425 views

Migrating C code that talks to a USB glucometer device from Linux to Android

Post for StackOverflow: Android 2.2 USB SW Support I have a Bayer USB glucometer that I reverse engineered using a usbsnoop tool in Windows. I also found a Perl script to convert the usbsnoop ...
2
votes
0answers
411 views

How to animate a marker(Overlay) image in mapview

Im developing a android application which uses google maps, im displaying a overlay image with some co-ordinates in the MapView, I need to animate the image. Please help. My code is as follows ...
2
votes
1answer
296 views

Nexus S (Android 2.3) use Front-Facing Camera compatible with 2.2

i'm searching a methode to use front facing camera but with compatibility with android 2.2. i've seen than android 2.3 bring Camera.open(Idx) but i need to use with Android 2.2 too. Thanks in ...
2
votes
1answer
172 views

gingerbread slower as froyo but why?

Ive write a Rubiks Cube solver under froyo. For solving a random cube there will be generate several move - and pruning tables. All of them are save in an Array of type static short[][]. Normaly at ...
2
votes
0answers
694 views

Blank screen when zooming in/out in MapView in Android 2.2

I have an application that puts some overlays in a MapView of the Google Maps api for android working perfectly in Android 1.6, and when I tested in an Android 2.2 (LG Optimus One) when zooming in/out ...
2
votes
1answer
2k views

navigator.geolocation.GetCurrentPosition throws “The last location provider was disabled” error

I am trying to create a very basic HTML5 page that grabs the geolocation, but I'm getting an error. Here's what I have inside my 'script' tags: function GetGeo() { if ...
2
votes
1answer
560 views

Android 2.2: Screen doesn't wake up after timeout when brightness set to zero

Im using the following code to adjust the brightness of the screen: public void SetBright(float value) { Window mywindow = getWindow(); WindowManager.LayoutParams lp = ...
2
votes
1answer
508 views

Android 2.2 SDK - PhotoCapture example not working

I'm integrating exact code from here: http://labs.makemachine.net/2010/03/simple-android-photo-capture/ How the activity should work: click "button" -> go to default camera. Take photo. "Retake" ...
2
votes
3answers
564 views

Android ContactsContract.Contact missing constants from the API?

I've been using the ContactsContract api for some time now and I've come across two "columns" listed in the API page for ContactsContract.Contacts that do not appear to actually be assessable. The ...
2
votes
1answer
107 views

Is/Are there any standard package structuring/heirarchy practices for Android?

When developing J2EE web applications I would typically organise my package structure in the following way com.jameselsey.<applicationName>. Controller - Controllers/Actions go here Service - ...
2
votes
2answers
309 views

Why won't a Android 1.5 app run on Android 2.2 phone or emulator?

I'm developing an Android application using Android 1.5. I'm using an older version of the SDK because I'm building it to run on a single G1 phone. I've been using a 2.1 emulator without any ...
2
votes
1answer
1k views

Start / stop built-in Wi-Fi / USB tethering from code?

How can I start or stop the built-in tethering in Android 2.2 from my application?
2
votes
0answers
265 views

Testing Android ContentProvider that accesses the Internet

I've written my own Android ContentProvider for accessing certain Internet resources. I'm trying to write some unit tests, but I do not want those tests to actually access the Internet. Behind the ...
2
votes
1answer
248 views

Account preferences in Android 2.2 per account, not account type

I'm developing an Android application and have one account authenticator with preferences. But when I add two accounts of my type, then the preferences are shared between them. How can I define ...
2
votes
5answers
2k views

How do you download a specific release of Android source code (e.g. Android 2.2)

I've never used git before, but I'd like to download the android source code as I'm getting a crash in the 2.2 emulator and I'd like to see exactly where in the android source code it's crashing (so I ...
1
vote
2answers
51 views

Call gluLookAt() for each item to be drawn?

pseudo code : drawScene() { for(every 3Dobject) { glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(eye, targ, up); //is there a better way? ...
1
vote
0answers
22 views

Stopping the DatePickerDialog from closing when use clicks the Set button

I've implemented a DatePickerDialog using the example shown here. In my implementation of the DatePickerDialog.OnDateSetListener I added validation logic to check that the selected date is within ...
1
vote
1answer
39 views

Adding a single overlay to MapView on Android

Is it possible to add a single overlay to a MapView without having to use the ItemizedOverlay class which seems a bit overkill for a single overlay?
1
vote
0answers
47 views

Android 2.2 Tablet Camera Issue

I am having an issue with the camera class on android 2.2 tablet. The problem is that when activating the camera preview, I see static as seen below: ...
1
vote
2answers
60 views

Android Date: finding future date

I am looking and have been looking for a good example or tutorial on calculating/finding a future date by adding a set number of days. I have a date picker that opens when user clicks on EditText so ...
1
vote
2answers
50 views

Android SQLite: entry validating/checking

Hoping someone might be able to shine a little light on this for me to help out. I have a EditText field where a user will input a serial number and or reference number, then hit the load Button. ...
1
vote
0answers
88 views

Android/adb redirect console app output

I am trying to get the output of a WLAN driver control interface via adb shell on a motorola droid 2. The command is called wlan_cu. To run the command,I am using: % wlan_cu -itiwlan0 -s ...
1
vote
1answer
225 views

android facing problems to use fragments in android 2.2

I am starting my programming with fragments. i want to do it for android 2.2 first then for android 3.0/3.1/3.2. I added Compatibility package , all things i did. What i want just give me some ...
1
vote
1answer
446 views

Android 2.2 progammically tell if my Bluetooth Headset is connected on application start

I am programming for android 2.2 API Level 8 and I am trying to find out if there is currently a bluetooth headset connected when my application starts initially. I can not seem to find a solution to ...
1
vote
1answer
227 views

Custom title of PreferenceActivity (problem)

I have the same problem like this question: Custom title bar in PreferenceActivity ?? After extending PreferenceActivity, I write this code in onCreate(), it just shows a blank grey title. I think it ...
1
vote
2answers
82 views

What is the best option for preloading and maintaining static data to a SQLite instance in Android?

I have an android app, which is basically an exam simulator, it will come preloaded with questions and the user gets a simple multiple choice interface. My question is, what is the best way to ...
1
vote
2answers
157 views

Multiple alignment in TextView?

I have a TextView like below. I used this code to set gray color for a part of the text. // Prepare result text. final String resultText = text + "\n\n" + dictionaryName; final SpannableString ...
1
vote
4answers
596 views

Selecting text on TextView (android 2.2)

How to implement selecting text capability on Android 2.2? I searched Google but can't find a solution.
1
vote
0answers
57 views

Android Language Porting

I want to know how easy or difficult it is to port Indian Languages on Android 2.2.. What are the skills required and will we need to do it in Java or C++ Which layers of Android are involved What ...
1
vote
2answers
837 views

How to delete entire contents of sdcard programmatically in Android 2.2

I wish to delete the users entire SDcard programmatically in Android 2.2. What is the easiest way to do this? Will it require root rights? Can I just do an "rm -rf /mnt/sdcard" or do I have to ...
1
vote
1answer
12k views

How to install USB Device Driver for LG Thrive Android Device?

I have just purchased LG Thrive handset for android apps development purpose. I tried installing "LGMS690" and "LG _USB _Drivers_All_4.9.7" usb device drivers on my windows 7 PC, but my device is not ...
1
vote
2answers
1k views

Accessing the front-facing camera (FFC) on Samsung Galaxy Tab (Android 2.2)

I'm working on an Android application that need access to the front-facing camera on Samsung Galaxy Tab, with Android 2.2 (Froyo). As I've read from some forums, there is official support for the ...
1
vote
1answer
851 views

Android Camera Preview Not Working (HTC MyTouch 3G Slide Android 2.2)

I can't see anything wrong with what I am doing, but I cannot get the camera on my phone to initialize and start drawing the preview. I have created a very simplified app that exhibits the same ...
1
vote
3answers
956 views

Moving an image through a linearlayout

I'm developing an Android 2.2 application. I want to move an image from left side of the screen to the right side of the screen. How can I do that? I've read that I have to add this image to a ...
1
vote
1answer
507 views

AlertDialog or Custom Dialog

I'm developing an Android 2.2 application. I want to show a text with an Ok butto but I want to add my custom style. What is the better choice an AlertDialog with a custom layout or a Dialog?
1
vote
1answer
164 views

Where to find the complete SGS I-9000 froyo source code?

(This question is indirectly related to a programming issue I'm having; if you think this question is off-topic, let me know, I remove it. Thanks). I try to activate WifiAP from within my app via ...
1
vote
2answers
574 views

Showing a dialog twice after pressing home key and turn back to app

I'm developing an Android 2.2 app. I use a dialog to ask user for his nickname. This is my source code: private void showDialog() { //set up dialog final Dialog dialog = new ...

1 2 3