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

It's possible do a layout exclusively for the last version of Android (ICS and JB)?

With the latest versions of android, mobile has been added as a lower bar of the tablets. That has made my application in these particular versions, may not appear properly, as it is designed to be seen without the bar. So my question is: is there…
0
votes
2 answers

networking issues on Honeycomb and higher

I am writing a chat program for android os 2.3 and above. I have been following some examples and got it working perfectly with all my extra bells and whistles on OS 2.3.x. My problem comes with OS > 2.3.x ie honeycomb and specifically ICS (I have…
0
votes
2 answers

What to choose between Action bar or TabLayout?

I'm developing for ICS. In a test activity, I need to display a top bar which has the number of questions. User can jump to any question by clicking on any question number in top bar. Now after a considerable research, I was going for horizontal…
0
votes
1 answer

View.SYSTEM_UI_FLAG_LOW_PROFILE has no effect

On Ice cream sandwhich and jelly bean I want to lower the profile of the status bar for my game. if(Integer.parseInt(VERSION.SDK) >= 14) activity.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE); I call…
0
votes
1 answer

Disable mini apps tray on galaxy tab?

I'm trying to disable the mini app tray in samsung tab 2, but as for now i hav no luck with tat. I'm running a service in in the background of my app to return the package name of the app running on top of the stack,and even that service is not…
zoram
  • 512
  • 6
  • 16
0
votes
1 answer

Highlighting and save the selected text from WebView?

I am working on Android 4.0.3 . I am trying to select the text from the WebView and saving it as a string . I have tried this Code: public void SelectText(){ try{ KeyEvent shiftPressEvent = new KeyEvent(0, 0,…
Navdroid
  • 1,541
  • 3
  • 25
  • 52
0
votes
1 answer

Boot receiver working on froyo but not on ICS

Possible Duplicate: BroadcastReceivers in ICS I have a boot receiver that calls an other application on boot received, this worked fine on froyo. but when i tried running it on ICS it does not work and the intent is never called ! This is the…
0
votes
1 answer

Source Code For stock apps

I want to use the source code of stock image editor present in ICS. where can I download it. please help some one. I am new to this field. Thanks!
0
votes
3 answers

What are the differences between Android ICS and Jelly Bean?

I'm curious about the differences between Jelly Bean and ICS (Ice Cream Sandwich). Is there anything special I need to do while developing for either of the OS?
0
votes
1 answer

How to take a screenshot on android 4.0+

I heard that Android 4.0+ support user to capture screenshot without root. So, I think that It must provide some APIs that help developers build this feature to their app, Right? If it have, Could you please tell me what they are?
Nguyen Minh Binh
  • 23,891
  • 30
  • 115
  • 165
0
votes
0 answers

I cannot make my soft keyboard appear on 4.0+ emulatora

It was supposed to be easy to make soft keyboard appears on Android 4.0+ emulator. I either add Keyboard parameter in AVD manager and set it to 'no' or manually edit config.ini file. I did both, but soft keyboard does not appear when I press into…
0
votes
1 answer

ICS taste for apps on SDK less than 11

Recently i have seen some android apps that runs on SDK < 3.0 but they have the same look of ICS applications. Here is an example: https://play.google.com/store/apps/details?id=net.hubalek.android.reborn.beta If you run this app on an old platform…
0
votes
0 answers

HttpsURLConnection getContent nullpointerexception with ICS

I'm getting a java.lang.NullPointerException when trying to read from an HttpsURLConnection. HttpsURLConnection.getContent() is null This problem only happens on 4.0 (ICS) and above. On 2.0, 3.0 etc the code works fine. I am doing my network…
0
votes
1 answer

Could not sign apk with platform certificate (ICS)

I try to sign Trebuchet launcher with platform certificate, but it fails to install after that: $ java -jar out/host/darwin-x86/framework/signapk.jar build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8…
artem
  • 16,382
  • 34
  • 113
  • 189
0
votes
1 answer

View's background disappear in Android

Sometimes when Activity is launched background of view (example ListView) is not visible (but sometimes everything is ok). It does not matters if it is drawable or color and it does not happens always. You can launch the same activity 10 times and…