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
12
votes
6 answers

PACKAGE_ADDED BroadcastReceiver doesn't work

I have a broadcast receiver registered in Manifest:
artem
  • 16,382
  • 34
  • 113
  • 189
11
votes
2 answers

Tab widget have always in capital alphabets in android 4.0

In Android 4.0 i put tab bar with two widget. in code i write in small alphabates(new) but in application it should always display (NEW) How to write small alphabates on tab in android 4.0
user1153176
  • 1,006
  • 5
  • 15
  • 21
11
votes
6 answers

Android not acknowledging TTS Engine

I am developing a very simple app in here. It's for my Cerebral Palsy daughter. It's just a big YES and NO buttons, so she can press them when requested. Well... I am using SVOX Classic TTS Engine. Everything was running smoothly until my tablet…
Carlos Pereira
  • 1,914
  • 6
  • 24
  • 35
11
votes
1 answer

Android ICS : How to detect that a device have "on screen Back/Home button" (Like Galaxy Nexus)

I wanted to know if there was a way to detect if the device have "on screen buttons" (like the Galaxy Nexus or ICS tablets) My issue is that in devices with on screen button, on the action, bar the overflow button is added (if overflow), and not on…
Atomusk
  • 113
  • 1
  • 5
11
votes
2 answers

Android 4.0 / ICS - App Icon on Action Bar not clickable

For some reason, when testing on my Motorola Xoom with Ice Cream Sandwich, the App Icon in the Action Bar is not clickable, even though I have implemented an event handler. This only occurs after changing the targetSdkVersion to 15. If it is 13 it…
11
votes
2 answers

Get the real screen resolution on Ice Cream Sandwich

Devices with Ice Cream Sandwich can use on-screen soft keys, and this means that some of the screen estate is taken by these keys. I need to get the real screen resolution, and not the resolution minus the space taken up by the soft keys. I've tried…
Michell Bak
  • 13,182
  • 11
  • 64
  • 121
11
votes
2 answers

HEAP MEMORY CORRUPTION IN dlmalloc or dlfree and SIGSEGV errors in Android ICS 4.0

Since I couldn't find anyone reporting this behaviour before I thought about posting the problem and my solution here so it could help others who are having this problem. Our app did work great on devices prior to ICS. We tested our app on the…
MarioB.
  • 2,396
  • 2
  • 18
  • 15
11
votes
5 answers

Android 4.0 ICS turning HttpURLConnection GET requests into POST requests

My Galaxy Nexus arrived today, and one of the first things I did was to load my app onto it so I could demonstrate it to my friends. Part of its functionality involves importing RSS Feeds from Google Reader. However, upon trying this, I was getting…
Michael Dodd
  • 10,102
  • 12
  • 51
  • 64
11
votes
5 answers

Protect a socket in VpnService

I'm exploring the capabilities of Android's VpnService. Presently, I've built a very rudimentary request forwarder by essentially rebuilding the IP stack in user space: I read IP packets from the VpnService's input stream, parse them, and for…
11
votes
3 answers

No such method getITelephony to disconnect Call

i want to disconnect outgoing call in ICS. My issue is first of all I am not getting the broadcast in IC` in Gingerbread it is working fine and blocking the calls but in ICS its not Broadcasting. for BroadCast I created a service and in that I am…
11
votes
6 answers

YouTube intent, error 400

I found that I can start a YouTube video in stock YouTube player this way: Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:U79wVTdnMpw")); startActivity(i); But it doesn't work. The YouTube player is started, but I get an…
POMATu
  • 3,422
  • 7
  • 30
  • 42
11
votes
2 answers

MediaButtonIntentReceiver not working in Android 4.0+

The goal is to intercept broadcasts from the headset, as well as bluetooth eventually, to respond to different types of clicks from the headset to alter the mediaplayer. This solution works fine for all versions prior to ICS. Here is some of the…
Du3
  • 1,424
  • 6
  • 18
  • 36
11
votes
2 answers

Workaround/polyfill for Android 4.0.3 Stock browser z-index issues

I'm looking for a workaround or polyfill for the z-index bug described in this report: http://code.google.com/p/android/issues/detail?id=31862 My markup and CSS looks basically the same as the one given in the bug report. It'd be really great if…
11
votes
2 answers

Play SWF file in webViewClient on ICS?

I tried to open an SWF file in webViewClient and it works on Android 2.1 and 2.3.3. But when I try to play the same SWF file on 4.0.4, it causes an error and a green screen appears in the videoPlayer page. oWebView = (WebView)…
Basbous
  • 3,927
  • 4
  • 34
  • 62
11
votes
2 answers

Change ListView choiceMode from singleChoice to multipleChoiceModal

I have a ListView that normally is the singleChoice choiceMode. When the user long presses on an item, I want to enter an action mode that allows selecting multiple items so they can perform an action on any selected items. I am able to configure…