Top "Android-2.2-froyo" questions

Android 2.2 is a platform release including user features, developer features, API changes, and bug fixes.

Can I get data from shared preferences inside a service?

I'm developing an android application. I'm using android 2.2 In my application I am capturing GPS data and sending it to …

android sharedpreferences android-service android-2.2-froyo
ListView setOnItemClickListener and setOnItemSelectedListener to store the Selected Item Index

I have read on this site that it is necessary to customize the setOnItemSelectedListener and setOnItemClickListener of a ListView if …

android android-2.2-froyo
What is a maximum size of SQLite database on Android?

I have a SQLite db that size is over 2.6 GiB. (The db contains maps.) This db is used by RMaps …

android sqlite android-2.2-froyo
Custom SSL handling stopped working on Android 2.2 FroYo

For my app, Transdroid, I am connecting to remote servers via HTTP and optionally securely via HTTPS. For these HTTPS …

android ssl android-2.2-froyo
Android -> how to animate to the new position

Here is simple xml android animation: <translate xmlns:android="http://schemas.android.com/apk/res/android" android:fromXDelta="0" android:…

android animation android-2.2-froyo
(How) Can an android virtual device use the local computer's internet?

I have a server running on the network my computer is on. Is there a way to allow the virtual …

android android-emulator android-2.2-froyo
Why can't one add/remove items from an ArrayAdapter?

I am using an ArrayAdapter<CharSequence> to populate the items to list in a android.widget.Spinner. That …

android android-widget android-2.2-froyo
Get index of selected tab in tabHost

I'm trying to store the index of the currently selected tab in onSaveInstanceState so I can restore it. However the …

android android-2.2-froyo android-tabhost
ADB Shell giving bad mode when executing chmod (under su)

I'm having an issue related to the Android ADB Shell. When I try to execute the command chmod he gives …

android shell adb chmod android-2.2-froyo
How to finish parent activity from child activity

I am new to Android development. I have created a main Activity (->A), which has 4 buttons. One of …

android android-intent android-activity android-2.2-froyo android-ui