Tagged Questions
The eclair tag has no wiki summary.
36
votes
7answers
35k views
How to read contacts on Android 2.0
I'm working on Android 2.0 and am trying to receive a list of all contacts.
Since android.provider.Contacts.People is deprecated, I have to use android.provider.ContactsContract, But I can't find a ...
12
votes
5answers
5k views
Accelerometer stops delivering samples when the screen is off on Droid/Nexus One even with a WakeLock
I have some code that extends a service and records onSensorChanged(SensorEvent event) accelerometer sensor readings on Android. I would like to be able to record these sensor readings even when the ...
2
votes
1answer
580 views
My custom ringtone previews but is silent during incoming call?
I have an MP3 file that I can play outside of Android and stored on the sdcard. I did the call to
MediaScannerConnection.scanFile(mContext, ...
so it has been discovered. In ...
2
votes
2answers
414 views
Android 2.1 gallery not backward compatible with Cupcake version, now what?
I don't know why, but in Eclair, the default (non-fancy) gallery app changed its begaviour from the Cupcake version, and it broke one of my commercial applications :-(
Firstly, when long-pressing a ...
1
vote
1answer
38 views
API8 to 7 compatibility
Hei,
What is the best way to make my app originally designed for API8 to be compatible with 7 ? I've noticed that AlertDialog features seem to cause trouble, for instance showDialog() doesn't work. ...
1
vote
1answer
655 views
Android Live Wallpaper touch events
I've just started with Android, I'm making a simple Live wallpaper. I'm testing it on a 2.1 emulator. The trouble is while it works in the preview screen before you choose "Set Wallpaper" the touch ...
1
vote
1answer
627 views
Future versions of Android and test devices - possible problems
In the last couple of days, there were some speculations, circulating through the blogosphere, that the future versions of the Android OS, created from the branches Donut and Eclair, won't be ...
0
votes
0answers
19 views
Scrollbars disappear after a few seconds in android api version 8 and above
I have designed a layout to contain a listview inside a scrollview, and have set fillViewPort of scrollview to true. So, when listview's height is gerater than scrollview's visible height, scrollbars ...
0
votes
0answers
20 views
Scrollbars disappear after a few seconds in android api version 11
I had designed a layout to contain a listview inside a scrollview, and have set fillViewPort of scrollview to true. So, when listview's height is gerater than scrollview's visible height, scrollbars ...
0
votes
2answers
46 views
How do decide which flavor of Android to develop an app for?
My research shows that Android 2.2 & 2.3 have the loin share of the market. But when developing an app should I keep the API level of the app 2.1 or go with 2.2+?
What factors are usually taken ...
0
votes
3answers
172 views
Can an (pre 3.0) Android program connect to a bluetooth A2DP device?
Can a program that is written using the gingerbread/froyo/eclair (e.g. 2.1, 2.2, 2.3 -> NOT honeycomb) connect to a A2DP bluetooth sink device?? Or, do I need to have the user go to their settings to ...
0
votes
2answers
58 views
Android compatibility
Here is the thing, I'm developing an application that uses a lot of the screen space, I need to show 3 list views in certain times for example. At first I was testing on my Android 3.1 tablet, but ...
0
votes
1answer
36 views
Debugging a rebooted device
I have an application which shows some weird behaviour on one of my testing-devices (X10 Mini Pro, Android 2.1-update1). Basically it's a clock radio that uses shoutcast for radio.
The problem:
When ...
0
votes
2answers
218 views
application requires feature(s) not available on your device
I have an Android application on Android Market, but some users are complaining about an error shown when the installation starts, just after the download:
One of them sent me a video of this error ...
0
votes
0answers
71 views
Permission on IntentService with Eclair 2.1
I'm writing two app on Android that uses the permission mechanism to enforces restrictions on caller.
They works perfectly on Froyo 2.2 or greater, but not on Eclair 2.1.
The first app (the caller) ...
0
votes
1answer
167 views
Tab layout problem in Froyo
I have created a tab based app, in one of the tab, there is also inner tab where some data is displayed in tabular format using adapter. It is perfectly ok in all devices with Android 2.1. But in all ...
0
votes
2answers
118 views
Android higher version problem
I have developed a tab-based application using API level 7. It is running fine with Android 2.1 device. But it is giving problem when I am trying to run it in 2.2 device. When I visit any tab first ...
0
votes
0answers
411 views
eclair launcher on froyo
compiling the Eclair launcher on Froyo BSP, i'm facing a problem that i cannot resolve. While compiling completes fine as the newly created apk installing, launching the launcher (ehm) it crashes due ...
0
votes
3answers
432 views
Making apps for android 2.1 in flash cs5 via air. Impossible?
Can anyone tell me if it is still posible to make applications for android 2.1 eclair in flash cs5 via air. I have spent a lot of time downloading, installing, configuring... all the nessesary ...
0
votes
1answer
753 views
How to properly kill an Android activity, that isn't a background process
There seems to be a lot of controversy about how to stop applications in Android, so I'll explain what I'm trying to do and why in hopes that I can receive some guidance on how to properly implement ...
0
votes
1answer
2k views
Android 2.0 How to get display name and number in a contact group
I get a list of contacts in a given group id by id
Cursor cur = ctx.managedQuery(ContactsContract.Data.CONTENT_URI,
new String[] { GroupMembership.GROUP_ROW_ID,
...
0
votes
1answer
1k views
Display a native activity with a pick-list of Android phone contacts only on Eclair and above?
I want to show the user a flattened pick list of all their contacts phone numbers and it must work from versions 1.6 up. I have read the related questions on SO and the Android documentation for ...