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
0
votes
1 answer

"MediaPlayer went away with unhandled events" error on Android 4.0 Ice Cream Sandwich on Beagleboard XM

I am using Android 4.0 Ice Cream Sandwich on Beagleboard XM. We are trying to play video files from sdcard onto BeagleBoard using VideoView. It is giving the following error after playing for say 30mins or so MediaPlayer went away with unhandled…
Raj Trivedi
  • 557
  • 7
  • 18
0
votes
2 answers

Is it possible to make a dynamic mix of ListView and TextView?

I tried to found a method, but no results. I want a ListView like below, and when I click on an element, like "Word", it'll be like this picture : Is it possible ?
toshiro92
  • 1,287
  • 5
  • 28
  • 42
0
votes
2 answers

How can I disable Android 4.0 home button?

I can disable home button for Android 2.2, 3.0 etc. But same code does not work for 4.0. Is there any solution to disable home button? @Override public void onAttachedToWindow() { super.onAttachedToWindow(); …
Sean
  • 30
  • 1
  • 4
0
votes
1 answer

WebView in ICS touch events not being fired properly

In ICS webview (which is compatible with older versions like 2.3.3) I am loading html file and wrote some functions which are linked with touch events like touchmove and touchend in javascript. But the problem in ICS is clicks on device is not…
0
votes
1 answer

HTTP Post Android SDK using 3.0 onwards

I've been trying to learn to to use Android SDK and have encountered my first issue of trying to send information to a database. My first though was to use POST in Android and send it to a PHP script. However every tutorial or example I've found has…
0
votes
1 answer

ActionBarSherlock and ICS

I have stared my eyes red on this: I use ABS and everything works perfectly under Android 2.2, but on ICS item.getItemId() always returns 0. Since item.toString() returns different values. I feel I should be able to solve this, but I alway end up on…
0
votes
1 answer

AutoCompletetextView issue with Nexus (Maybe is 4.0.X)

My issue is that I have a big, enormous list for the AutoComplete. Example: Store A Store B Store C Store D Store F Store H Store I As you can see they all use Store and when I start typing store I see the (...) in the phone, where I can see the…
0
votes
1 answer

Profiling and debugging techniques for high uptime ADK controlling application?

I've recently ported an application that is known to run with uptime of months (DIY Zoning Project) to Android (the accessory driver, the core process and the remote control). And, unfortunately, though techniques to keep running services alive were…
0
votes
1 answer

Posted notifications showing date 'Thu, 1 Jan 1970' after a while

I am the developer of an application which is strong on the notifications department. I've recently upgraded to the HTC One X running Android 4.0.3 and noticed a problem that I never noticed on my previous phone running Android 2.1. The…
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
0
votes
3 answers

Why in ICS my ProgressDialog is not like custom ProgressDialog?

I've installed my .apk on Transformer Prime 201 with android ver. 4.0.3 but ProgressDialog does't look like custom ProgressDialog on device. Why is it so? What does I must to change in my code for using custom ProgressDialog style on the…
0
votes
1 answer

White rectangular area in Millennial Media banner on Android 4.0

In my game I have both Millennial Media and Admob banners implemented (Millennial on top of the screen, Admob on the bottom). Everything is done programatically in Android/Java with the use of RelativeLayout, firstly I'm adding MMAdView then OpenGl…
Eric
  • 1,685
  • 1
  • 17
  • 32
0
votes
2 answers

Displaying images without locking the "main" thread

I've run into an issue with my application. I'm porting a series of internal iPad apps from iOS to android and image sequences are integral to their design. They require the standard fullscreen stop, start, pause functionality all of which is…
0
votes
1 answer

Cannot capture photo via camera in android 4.0.3 emulator

I'm new to android development. I'm developing an application for android 4.0.3 devices, in my app I capture an image using camera. When I test in the emulator (android 4.0.3), clicking the capture button displays the following message your sd card…
0
votes
1 answer

Android : Ignoring invalid text regex in 4.0.x version

I am getting error in DDMS, when I click in logcat error it moves to DDMS screen & shows this error-- [2012-06-27 17:17:12 - LogCatFilter] Ignoring invalid text regex. [2012-06-27 17:17:12 - LogCatFilter] Unexpected internal error near index 14 …
Rahul Baradia
  • 11,802
  • 17
  • 73
  • 121
0
votes
2 answers

Factors when deciding which Android API version to support (in-house application)

(Let me begin by saying that a) I appreciate this is the wrong place to ask which version I should use, especially because my question is only locally relevant, and b) I am surprised this hasn't been done to death, but it appears it hasn't!) At…