Questions tagged [android-4.0-ice-cream-sandwich]

Android 4.0 (codename Ice Cream Sandwich) is API level 14 of the mobile operating system developed by Google. This version delivers a refined, unified UI for phones and tablets and introduces innovative features for users and developers.

Android 4.0 (codename Ice Cream Sandwich) is API level 14 of the mobile operating system developed by Google.

This version delivers a refined, unified UI for phones and tablets and introduces innovative features for users and developers.

It was released on 19th October 2011.

More info:

1251 questions
5
votes
3 answers

Where is the hardware acceleration in the ICS Emulator?

I thought this was on the way, anybody know how to enable it? Seems that I can't get a GLES2.0 context inside the emulator either, but maybe that's just me. IllegalArgumentException: No configs match from the egl. However, the GLES20 API Demo…
HaMMeReD
  • 2,440
  • 22
  • 29
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
2 answers

Capture event on Android after some seconds

I want to add a button to my app in Android and capture the event on this button (onclick) after a couple of seconds pushing the button, so it doesn't react at the first touch. Is this possible to achieve on Android? Right now I have the next code…
maqjav
  • 2,310
  • 3
  • 23
  • 35
5
votes
2 answers

InApp voice-triggered controlling and offline SpeechRecognition on Android ICS

I am currently developing a crossplatform app, this should run on a Google GLASS (Android 4.0.4), a smartphone (Android 4.0.4 or newer) and another wearables. At least it will be ICS – Ice Cream Sandwich version. This app provides me with…
5
votes
1 answer

onScrollChanged() never fired on Android 4.0

I have a GridView that shows images from your gallery. When user scrolls the list, details about the image animate in from the left. I implemented this in the class that defines custom layout for the GridView item. It extends…
5
votes
2 answers

Even With setHomeButtonEnabled(true) App Icon not Clickable in Android 14

my Code: (Updated) I've Added my onCreateOptionsMenu And onOptionsItemSelected Method here : ActionBar actionBar = getActionBar(); actionBar.setHomeButtonEnabled(true); actionBar.setDisplayHomeAsUpEnabled(true); @Override public boolean…
Adnan
  • 814
  • 12
  • 38
5
votes
1 answer

EditText as part of HeaderView loses focus on input

This is an issue which I am facing only for > Android 4.0 devices. Currently I have a listView and a custom header which I add onCreate()of the ListActivity. I use the editText as a custom searchBar in the app. The following is a code snippet…
5
votes
0 answers

android query failed com.android.internal.telephonyCommandException RADIO_NOT_AVAILABLE

After upgrading from ICS 4.0.4 to 4.0.6 my mobile won't get any connection via radio. WiFi just great, no problems there. In Settings even the SIM-Settings are blacked out. IMEI just okay, checked that. When checking the band mode I got the error…
5
votes
1 answer

Yahoo Currency Exchange Rates in Android 4

In my application, I need to get the current exchange rates for different currencies. As it has been suggested by this, this and this question a nice way to do it, is to use the Yahoo Finance service. So, when I want to find, for example, the rate…
5
votes
0 answers

Sumsung S Planner and Google Calendar issues

I am having issues with a app that works fine on all the ICS phones i have tested but not Samsung with S Planner i'm using a intent of action pick to pick a event. The problem that when is call s planner is crashes on return. I decided to install…
5
votes
0 answers

Location cache in android ICS?

my understanding is that in gingerbread and lower, android kept a cache of 200 wifi location fixes and 50 cell location fixes. These were stored in cache.wifi and cache.cell files at /data/data/com.google.android.location/files, and rooted devices…
Dom
  • 177
  • 1
  • 6
5
votes
1 answer

Android ICS Device Encryption

i'm trying to trigger the encryption of my ICS device programmatically by launching an intent (Intent --> DevicePolicyManager.ACTION_START_ENCRYPTION). This works quite well. I would like to know whether there is sent an broadcast or sth like that…
5
votes
4 answers

ADK 1.0 devices fail to work with Jelly Bean, why?

Just connected the tried and true ADK accessory to Nexus 7 and Galaxy Nexus - and it failed to connect with "could not read device protocol version" message. Thought that the board died, connected to Nexus S with ICS - worked just fine. Worked on…
5
votes
3 answers

Autocomplete TextView with Asynctask and webservice in android 4

I am trying to make a autocomplete using AsyncTask with a server. I shared my code here. This is the code for my AutocompleteTextwatcher: AutoCompleteTextView textView = (AutoCompleteTextView)…
Akilan
  • 1,707
  • 1
  • 16
  • 30
5
votes
2 answers

XmlPullParserException only on ICS

My problem is that I have to parse HTML data like 84 101
some text
Here comes a table definition
and an XmlPullParserException is thrown on the following: while (eventType != XmlPullParser.END_DOCUMENT) { if…