Questions tagged [android-2.3-gingerbread]

Android 2.3 (Gingerbread) is a minor platform release to the Android OS from Google that debuted on the Nexus S.

Android 2.3 (Gingerbread) is a minor platform release to the Android OS from Google that debuted on the Nexus S in December of 2010. Gingerbread introduced new features such as NFC, support for new sensors, and internet calling.

486 questions
0
votes
1 answer

Why onProgressUpdate() doesn't get called on Gingerbread when working in standalone service?

A bit convoluted situation - A Service is packaged as a separate APK with nothing other than it in the manifest; The Service accepts incoming requests and handles them with MessageHandler; In one case, a handler spawns an AsyncTask like…
0
votes
2 answers

top align image over ImageButton

I am trying to set the image at top over ImageButton as follows But I am not being able to do so. if I use following code
Hunt
  • 8,215
  • 28
  • 116
  • 256
0
votes
1 answer

Installing apk files in BeagleBoard having gingerboard

I wish to install a apk file in beagle board having gingerbread Android. Unable to access files which are in my sdk card.
Girish Koundinya
  • 143
  • 3
  • 12
0
votes
1 answer

HD video streaming in gingerbread and ICS

i am really not getting anything on net related to this topic. I wanted to do HD video streaming on gingerbread and on ICS. I tried to play various HD video(mp4) locally on blaze ported with gingerbread, but not able to play. First of all i am not…
0
votes
1 answer

Android - Get all Alarms set in Clock application? (There might be multiple third party clock application)

I want to write application which displays all the Alarms and Timers set in my device. Lets take this scenario, Assumption: In my device there is one system Clock application and I downloaded 2 third party clock applications. Now lets say, I set 3…
0
votes
2 answers

How to set clipboard in android emulator for ice cream sandwich?

I found a command-line solution to set the clipboard text in a Gingerbread AVD, but this command-line doesn't work when I'm running an ICS AVD. I built a script from this page: Pasting text into Android emulator clipboard using adb shell . Again,…
0
votes
1 answer

How could a service detect that an activity has closed?

I have a service both of started and bound type (as defined here). It is started to run indefinitely, then a separate application binds to it: when this application is destroyed, it calls the unbindService on its onDestroy method. The service should…
enzom83
  • 8,080
  • 10
  • 68
  • 114
0
votes
2 answers

Android NumberPicker limits on Gingerbread

I have a numberpicker: AlertDialog alertDialog = builder.create(); alertDialog.setTitle("Quantidade"); NumberPicker NP = (NumberPicker)view.findViewById(R.id.npicker); NP.setMaxValue(1000); NP.setMinValue(1); alertDialog.setButton(...); …
Joaolvcm
  • 1,983
  • 3
  • 20
  • 24
0
votes
1 answer

weird NullPointerException in Android 3.0

I don't know the reason why the same code runs OK on Android 2.3 but when it comes to android 3.1 tablet, it throws NullPointerExceptions...here's the code: public class CalleeButton extends Button implements OnClickListener, AddressAware { private…
-1
votes
1 answer

how to start the count down timer (timer) from the user specified time in android?

Im developing a android application. The following are the configuration details Mimimum SDK=10 In my application i want to play a video (which is already captured) and show the timer to run for every seconds when video is running. For…
SIVAKUMAR.J
  • 4,258
  • 9
  • 45
  • 80
-1
votes
1 answer

google play services version issue real device

I´m new on android developement, and i have faced some troubles with google maps. here are a few questions I´know that adv with target 4.2 or higher includes google play services, does this imply that real devices with lower versions will not run…
-1
votes
3 answers

Android application running on 2.3.5 but crashing in 4.1.2

I am creating an app that will access and fetch the data from server thus application works fine and running as expected in GingerBread(2.3.5) but it crashes in JellyBeans(4.1.2). It generates the following error 12-19 14:46:12.027:…
-1
votes
1 answer

Animator based Animation does not work on Android 2.3

My app developed based on Android 4.0 APIs, it works good. Now I have to support devices of Android 2.3, some Animator related features failed to work. I know Animator is released from 3.0. My question is how can I work around that ?
RoFF
  • 529
  • 5
  • 27
-1
votes
2 answers

Android app error for android 4.0

I can't run my application in phone with android version 4.0. But I can run my application on phone android 2.3. Here is the logcat: 10-25 11:58:59.505: D/dalvikvm(23464): GC_FOR_ALLOC freed 117K, 12% free 9492K/10759K, paused 13ms, total 16ms 10-25…
-1
votes
1 answer

C# Monodroid/Xamarin - List Implementation Differences for GingerBread through to JellyBean

Scenario I want to implement a list for my Android app, written in C# using Monodroid/Xamarin. I'd like the app to run on GingerBread 2.3.6 (as well as the latest versions of JellyBean). The list functionality should be similar to that of the…
1 2 3
32
33