Ice Cream Sandwich is the fourth major release of the Android operating system, and it is the version of Android that can run on both phones and tablet devices. For an overview of the new features in Ice Cream Sandwich, please refer to the version notes: Android 4.0

learn more… | top users | synonyms

19
votes
3answers
770 views

SMS_RECEIVED not working on Ice Cream Sandwich?

I'm trying to use android.provider.Telephony.SMS_RECEIVED to catch incoming SMS's. I built a simple app, which works on 2.x, but when I try it on my 4.0 emulator or device, it doesn't work. Any ...
12
votes
4answers
336 views

How do I fix Html.fromHtml link focus visibility problems (in ICS and Honeycomb)?

To get a TextView to display (and act friendly with) Html strings my code looks something like: // itemHtml is a String of HTML defined above TextView itemContent = (TextView) ...
10
votes
3answers
1k views

Build Error : Ice cream sandwich emulator on Ubuntu

I am trying to build ice cream sandwich emulator on Ubuntu Linux. Getting following error : host C++: libGLcommon <= development/tools/emulator/opengl/host/libs/ ...
9
votes
5answers
793 views

The missing MENU button in HoneyComb and Ice Cream Sandwich

I'm a fan of the menu button as used in Android <3.0, as it was very useful for my game apps - it allowed me to take important but gameplay irrelevant functionality (saving game, reference info ...
8
votes
2answers
119 views

Bitmaps on ICS are loaded with wrong pixel format

I encountered the following problem. When any bitmap is loaded from resources by an application running on Ice Cream Sandwich, it will likely be rendered incorrectly as if it has been decoded to the ...
7
votes
2answers
147 views
+50

EditText does not show current input (ICS)

In my application users can input text in an EditText view (editText1). I grab the inputs with an OnEditorActionListener, display them in a TextView above (logTv1) and empty editText1. ...
7
votes
1answer
243 views

How to make Android 4.0 apps backwards compatible?

Android 4.0 (ICS) has lots of new UI guidelines which are great. The problem is that going forward, I'm not sure how to build an app for Android 4.0 and make sure that the app looks the same/similar ...
6
votes
1answer
110 views

Why is Android 4.0 / Ice Cream Sandwich allocating so much heap memory?

I noticed that on my Galaxy Nexus that android.content.res.Resources is allocating about 11MB. I discovered this as I was in the process of profiling things using DDMS and the "Dump HPROF file" ...
6
votes
2answers
132 views

How to make my project compatible with different sdk versions while using features for an specific version

I'm developing a project that uses a Flash video within a webview. I solved all my problems regarding to code, but only worked below Honeycomb. Reading this I found out how to solve the problems for ...
6
votes
3answers
1k views

Possible to hide option menu button on ICS?

I have an app that uses android:minSdkVersion="7" and android:targetSdkVersion="10". Is it possible to hide the option menu button that is on screen on ICS (api level 14)? Some of the activities may ...
5
votes
3answers
97 views

WebViewFragment webView is null after doing a FragmentTransaction

I currently have my application set up with a ListFragment on the left and a DetailsFragment on the right (similar to the layout on the tablet below). On the details fragment (fragment next to the ...
5
votes
3answers
285 views

Gradient compatibility issue - ICS defaults to fewer colors than all the previous versions of Android

Gingerbread (2.3.3) emulator left, ICS (4.0.3) emulator right. Notice the gradient fade effect difference inside the red box (open in separate window to see the full sized image). Mainview ...
5
votes
2answers
789 views

Options menu not showing in ICS using compatibility library

I can't get an options menu to show in a Fragment in ICS in a project which uses the android-support-v4.jar library. I'm testing on a Galaxy Nexus handset. We aren't using the action bar, and need ...
5
votes
2answers
285 views

Intent.ACTION_VIEW a video URL not working on Ice Cream Sandwhich

I have the following code to view a remotely hosted video file: startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(article.getLink()))); where getLink() returns the URL of the video associated ...
4
votes
1answer
64 views

use holo theme on Android < 4.0

I'm developing an app for Android 2.2 and higher. I use the great ActionBarSherlock (thank you, Jake Wharton !!) to use the action bar on pre-ICS devices. While the actionbar looks great, all other ...
4
votes
1answer
407 views

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 ...
4
votes
1answer
292 views

Weird EOFException on Galaxy Nexus

My Android application uses URLConnection to connect to a webservice. It's in the market over a year now and works quite well. However, problems with Galaxy Nexus users came up recently: When getting ...
4
votes
1answer
526 views

How can I force the Action Bar to be at the bottom in ICS?

Ice Cream Sandwich (Android 4.0) adds the option of having the Action Bar at the bottom of the screen on phones, and that's something I'd love to have in an application of mine. The docs mention ...
4
votes
3answers
369 views

Distinguish between Tablet and Smart phone on ICS

I understand that by default (pre ICS), to distinguish between a Tablet & Smartphone, a developer can use the sdk version in the Android Manifest (apart from screen size and openGL filters). Now ...
4
votes
2answers
522 views

Android 4 software buttons in emulator?

Android 4 ICS is supposed to have virtual menu, home and back buttons at the bottom. I don't see this in the emulator. Do I have to do something to enable that?
4
votes
4answers
692 views

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 ...
4
votes
2answers
663 views

aapt.exe is throwing unhandled exception while building *.apk file for Android project in Eclipse

i just upgraded my system to Ice Cream Sandwich (Android 4.0) and now everytime I attempt to run my application in the debugger, I get a crash in aapt.exe. If I just build, it builds fine, but when I ...
3
votes
1answer
86 views

GPS location fetching never stops on ICS

I try to make a two step location detection with my LocationListener. It works as expected on each android version as expected. Only on ICS I can't stop the GPS location detection. // inner class ...
3
votes
1answer
126 views

Ice Cream Sandwich won't recognize line breaks in HTML

This is in relation to a previous question I asked here. Calling replaceAll("\n", "<br />") and then Html.fromHtml() will properly format the text in pre-Ice Cream Sandwich; however, as you can ...
3
votes
1answer
212 views

NFC can't send data Android 4.0.3

I have an NFC Device (SCL3711) and Google Nexus S phone. I have write an application which send data from the phone to NFC Device and vice versa. Everything works excellent on Android 2.3.3. Now I ...
3
votes
3answers
237 views

What is trigger this Exception instance: “java.lang.IllegalArgumentException: The observer is null.” and how could it be avoid?

I'm getting this exception when returning to the original ListActivity after opening an new activity with the content of the item selected by the user. It only occurs on Ice Cream Sandwich. This is ...
3
votes
3answers
155 views

Why does EditView retain its Activity's Context in Ice Cream Sandwich

In Ice Cream Sandwich, when there's an Activity containing an EditText, the EditText will retain the Activity's Context even after the user leaves the Activity. To demonstrate this I've created ...
3
votes
1answer
287 views

Using laptop webcam with Android 4.0 emulator

I'm working on a head tracking 3D application (take a look here if interested). Since I only have a Nexus One which doesn't have a front camera, I can't really test it. Most of the time I'm using my ...
3
votes
1answer
266 views

Disjointed WebView drawing in ICS

I'm making an application which has a Webview inline with other elements, nested in a ScrollView. I've noticed that in ICS, testing on a Galaxy Nexus device, the WebView appears to be disjointed from ...
3
votes
2answers
552 views

How to control ActionBar split programmatically?

The android ActionBar may split into a top and bottom bars if activity's parameter "uiOptions" is set to "splitActionBarWhenNarrow", note this parameter is only valid in ICS. Honeycomb has introduced ...
3
votes
1answer
549 views

Samples/tutorial for DRM framework in Android

Android 4.0 brings drm framework to smartphones. I'm interested to write a code that plays video protected by the DRM, but can't find enough information. Are there any tutorials on using the DRM ...
3
votes
4answers
1k views

Backwards compatibility of Ice Cream Sandwich

I have developed an application which it runs on honeycomb. I wonder that can there be problem on Ice Cream Sandwich? What is the backwards compatibilities of ics?
2
votes
1answer
55 views

Issue with loading local javascript files inside a webview

I had with an issue that has plagued me for days. It turned out that it was an Android glitch and has been submitted, confirmed, and hopefully will be fixed in a future release. Now I have found a ...
2
votes
1answer
34 views

how to add a picture on notification bar in Ice Cream Sandwich

How do you put this image http://1.androidauthority.com/wp-content/uploads/2011/10/ics-notifications.jpg) into the notification bar?
2
votes
1answer
59 views

Android StackWidget unable to bind

I am currently trying to add a widget to my application and have been basing my implementation on this code http://developer.android.com/resources/samples/StackWidget/index.html I have put all my ...
2
votes
1answer
58 views

What's the real purpose of Android's contentDescription tag?

One of the latest updates for the Android SDK plugin in Eclipse introduced a lot of new warnings for your layouts and such. One of these is an accessibility warning that appears if you don't have the ...
2
votes
1answer
113 views

Does icecream sandwich 4.0.3 enforces more restrictions for application developer in threading usage?

I am working on an application that was designed for tablet (specifically tested well on Motorola Xoom and Samsung Galaxy Tab 10.1). The O.S. which was used was HoneyComb. Recently after updating the ...
2
votes
1answer
70 views

What's wrong with the ICS Holo Dialog theme?

I've come across a bit of a weird issue with activities using the Holo Dialog theme (@android:style/Theme.Holo.Dialog) in Ice Cream Sandwich. It seems like they ignore their layouts and fill the ...
2
votes
3answers
297 views

Android Ice Cream Sandwich Edittext: Disabling Spell Check and Word Wrap

UPDATE: I have solved disabling spell-check. In order to get rid of spell checking you must specify the EditText's InputType in the XML as the following: android:inputType="textNoSuggestions" ...
2
votes
1answer
256 views

How do I target 1280x720 WXGA720 resolution (like new Galaxy Nexus) in Android Layout folders?

When testing my application at WXGA720 resolution on the Android Emulator running 4.0.3 Ice Cream Sandwich, my app takes the layout assets from the layout-normal-land-854x480 folder in landscape view ...
2
votes
2answers
136 views

Correct implementation of android action bar (esp. now ICS is out)

I'm surprised that I cannot find much information on the internet about this. I would have thought that it would be a hot topic, especially with the release of ICS. Anyway, I was wondering if anyone ...
2
votes
1answer
79 views

Icecream Sandwich View Behavior

I have an applications that I've built to target SDK 3.0. In this application there is a relative layout that has a full screen VideoView with a button underneath it. The video view has an ...
2
votes
2answers
131 views

Manually rotate screen

Hs there any chance to rotate the screen on Android programmatically for the whole system? Background is that I'm using a CMPC-device which features a non-Android-supported rotation sensor, and as a ...
2
votes
1answer
155 views

Orientation change: reloading layouts from resources

I want to adapt my app for tablets with large and xlarge screens (Android 3.0+ or API level 11+). Therefore, I created two folders: res/layout-large-port-v11 and res/layout-large-land-v11. When I ...
2
votes
1answer
36 views

JPEG EOI nonexistent in Android ICS 4.0.1

I've got a simple jpeg validator that checks the final two bytes of uploaded images for the standard EOI indicator (0xFF,0xD9). I've noticed images uploaded from ICS 4.0.1 no longer have this EOI ...
2
votes
0answers
138 views

android 4.0.3 ACTION_INSERT_OR_EDIT intent not working

When i try to use this Intent like so.... Intent i = new Intent(Intent.ACTION_INSERT_OR_EDIT); i.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE); startActivityForResult(i,INSERT_CONTACT); it ...
2
votes
2answers
287 views

Android My application works on 2.3 fine but doesn't start even on 4.0

How can I fix problems on Ice Cream Sandwich? also I am not good at reading logcat If anyone can guide me about how to read the actual problem on which line of my code I will be appreciate it.. ...
2
votes
2answers
417 views

What does MR version stand for?

Today I got Android ICS update. The system shows version "Ice Cream Sandwich MR1". I know alpha, beta, rc, rtm, etc. but I was wandering what MR stands for.
2
votes
1answer
297 views

Showing DialogFragments crashes ICS

After the Fragments API being released, I started porting all my deprecated dialogs into DialogFraments using the compatibility package. Everything was working well, until I notice that my dialogs are ...
2
votes
1answer
296 views

Notification Number and Ice Cream Sandwich?

http://developer.android.com/reference/android/app/Notification.html#number Can anyone please confirm if this was removed from ICS (or before)? I usually do my testing in 2.2 and just noticed the ...

1 2 3 4 5