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
7
votes
2 answers

After update the APK supports fewer devices than previously

I have a relative simple App that was already in the Play-Store of Google. Now I've made an Update of this App. One Point of this Update was that I include the ZBar-Scanner. The Rest of the changes were minimal and shouldn't have any influence on…
6
votes
5 answers

Change application name and label

I would like to change the application name and label in the installer window (see the attached image). Name and label is, by default, the package name. Even though I added custom name and label in AndroidManifest.xml, it is not reflected in this…
6
votes
4 answers

ScrollView doesn't display its content properly in lower versions of android

You can see my scrollview being displayed the same in jellybean, & kitkat, very awesome: But I am shocked to see the same thing in lower versions like 2.2, 2.3.3 It seems that it display some portion of text attached to upper & bottom portion…
6
votes
1 answer

Gingerbread devices not using Holo style from Theme.AppCompat (support library)

I'm using the v4 and v7 support library to integrate the action bar and navigation drawer in my app, which supports API 10+. I've followed the guide on the developer site to use Theme.AppCompat and style/Widget.AppCompat.ActionBar as the parent of…
6
votes
3 answers

android browser (webkit) select-multiple's items disappear when selected

I have an issue with Android's webkit browser Items in select-multiple disappear when they are selected I couldn't find any solution on the web, neither nobody talking about this issue I made the screenshots in my desktop OS just to demonstrate…
6
votes
6 answers

ActionBarCompat on Gingerbread fills whole screen

So we've successfully stripped ActionBarSherlock from the Zappos app in favor of the new ActionBarCompat and it works great on Honeycomb+ but on Gingerbread the action bar expands to fill the whole screen and I cannot figure out why it's happening.…
6
votes
0 answers

NotificationCompat Ticker Text Not Showing When Updating Notification

Background This is an app I am writing to familiarize myself with some of the APIs, it serves no real purpose other than to demonstrate some functionality in Android. I have a Service that is running in the foreground (startForeground), and has an…
6
votes
2 answers

Android - Bad notification posted only on Android 2.3

I'm receiving reports about crash in Android 2.3 when displaying notification. The stacktrace I have is: android.app.RemoteServiceException: Bad notification posted from package com.megadevs.hubi: Couldn't expand RemoteViews for:…
6
votes
2 answers

Eclipse becomes stuck on "starting activity" when sending application to device. How to solve this?

Sometimes, when I attempt to "Run" my application on my Droid Charge (running Gingerbread), Eclipse displays the following in the console: [2012-05-31 23:08:50 - SomeApp] Android Launch! [2012-05-31 23:08:50 - SomeApp] adb is running…
BVB
  • 5,380
  • 8
  • 41
  • 62
6
votes
0 answers

andengine: Add a view containing UI controls on top of andengine using addContentView

I am trying to create an EditText on top of an andengine game to act as an ingame chatbox. The method I am using works fine on Android 2.2.1 IDEOS 2, Emulator Android 2.1, Emulator Android 2.2, Emulator Android 2.3. UPDATE 25/APR/2012: Recently…
6
votes
1 answer

How do I stop GC_CONCURRENT running so frequently?

I am using a thread which records the audio using AudioRecord class and placed in recorderBUffer (which is a linked list of Short[]) , a separate thread which does the encoding of this data and place it to a playerBuffer(linked list[]). For playing…
Amit
  • 13,134
  • 17
  • 77
  • 148
5
votes
1 answer

Why ViewTreeObserver > OnScrollChangedListener not called on Android 2.x if it set in onCreate()?

I discovered that OnScrollChangedListener on Android 2.x won't be ever fired if it was added before the first time layout draw. For example, when you add a scroll listener in methods like onCreate/onResume/onAttachedToWindow: public class…
5
votes
1 answer

Navigation Drawer ListView selection problems on android 2.3

I try to customize navigation drawer menu for old-good android 2.3 For this I use official SampleNavigationDrawer by developer.android.com and this tutorial for implements ActionBarCompat. In android.support.v4.widget.DrawerLayout use next…
5
votes
1 answer

NotificationCompat.Builder on API < 11 not working

public static final String NOTIFICATION_TITLE = "Title"; public static final int NOTIFICATION_ID = 1; private NotificationManager mNotificationManager; NotificationCompat.Builder builder; private void sendNotification(String msg) { …
Eloi Navarro
  • 1,435
  • 1
  • 14
  • 26
5
votes
4 answers

Any simple way to require an EditTextPreference value to not be blank in Android?

I have a number of EditTextPreference which must be a number 0-9. I can prevent other characters but not backspace. Backspace + Okay = an empty value. An empty value means when the it is retrieved and parsed into a number it will crash. At the…
Ael
  • 323
  • 4
  • 14
1 2
3
32 33