Questions tagged [android-3.0-honeycomb]

Android 3.0 (codename Honeycomb) is API level 11 of the mobile operating system developed by Google. This version is an adaptation for larger screens to better support tablets.

3.0 (codename Honeycomb) is API level 11 of the mobile operating system developed by Google. This version is an adaptation for larger screens to better support tablets.

The SDK was released in the beginning of 2011. For details about features etc see: http://developer.android.com/sdk/android-3.0.html

893 questions
0
votes
0 answers

Setting minimum date in date picker dialog gets force closes on versions above honeycomb and works fine on versions below honeycomb

I have 2 datepicker dialogs in my fragment. The date picker activates when clicking on buttons. I have 2 buttons 1 for setting depart date and the other for setting the return date. clicking on the depart button pops one datepicker dialog and…
0
votes
1 answer

Intent for call does not open dialer

I am using Intent to make calls from my app. Here is the onClick for the TextView on which if the user clicks I want to open the dialer: txtCall1.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { …
Fatima
  • 869
  • 10
  • 35
0
votes
2 answers

Is it possible to use Switch widget in Android honeycomb 3.x?

It always give me the following exception in runtime: android.view.InflateException: Binary XML file exception line #291: Error inflating class android.widget.Switch However, I added the latest Android Support Library to my project but it did not…
0
votes
2 answers

Destroying MainActivity gives me NullPointerException on HoneyComb

Whenever the user quits my app (MainActivity) using honeycomb I'm getting the following error: 06-12 02:30:42.612: E/AndroidRuntime(322): FATAL EXCEPTION: main 06-12 02:30:42.612: E/AndroidRuntime(322): java.lang.RuntimeException: Unable to destroy…
0
votes
1 answer

How to programatically change the background color of the stacked bar on API v11+ using android.support.v7.app.ActionBar?

I know that I can do this in xml, but I want to do it programatically. I'm using bar.setBackgroundDrawable(new ColorDrawable(0x20000000 + currentlySelectedLine.color)); and bar.setStackedBackgroundDrawable(new ColorDrawable(0x20000000 +…
0
votes
2 answers

translate the imageview(object like button) original(where placed)place to another specified position on screen in android programmatically

I am trying to translate my image to another specified place..i tried here in code given.but, its going wrong way translated.. Please anyone help me to come out this issue.. package com.example.numbercount1; import…
0
votes
0 answers

SearchView behavior If It must support OS before HoneyComb

I found out that there is a way to support devices with older OS (GingerBread and Older) even if you are using SearchView function that is designed for HoneyComb and Later OS. I tried putting this method as it was show in the docs: public boolean…
0
votes
1 answer

How to add Search Engine if target API is HoneyComb

I am trying to add a search interface based on the android docs. However, my target api level is 8, which is gingerbread (i think) but the eclipse, as well as the docs says the target api level must be 11 (honey comb). How could I resolve this…
Jeongbebs
  • 4,100
  • 7
  • 34
  • 60
0
votes
1 answer

Why does my android emulator have different background than main.xml ?

So, I have a holo light theme, I am developing for android 3.0 and in my main.xml graphical layout shows a black screen which is what i want, but when I run the app on my android emulator version 3.0, it has a white background. I want to have a…
0
votes
1 answer

Why do I keep getting exception when re-using bitmaps?

background starting from API 11, you can re-use bitmaps when you decode new ones, so that the decoder won't need to re-create totally new large objects. this is done using something like this code (taken from this tutorial) : mCurrentBitmap =…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
0
votes
1 answer

Issue with java.nio in Android 3+

I'm having an issue with a java.nio non-blocking server that I found and want to implement in my app: https://code.google.com/p/java-toys/source/browse/#svn%2Ftrunk%2FExample_NIO_Server%2Fsrc%2Fcom%2Fcordinc%2Futil%2Fnetwork So here's what's…
Osmium USA
  • 1,751
  • 19
  • 37
0
votes
1 answer

animationlistener not working pre honeycomb devices

I want to apply an animation to a view and show it when the animation has ended through a AnimationListener. My code works for devices 4.x but it's not working for a 2.3.3 device, the onAnimationStart and onAnimationEnd methods are never called. …
nirvik
  • 386
  • 2
  • 5
  • 18
0
votes
2 answers

android 3.0+ action bar keep background when styling

I'm developing an App for Android 3.0+ and I want to personalize the action bar by removing the title, which I can accomplish, my problem is that I also lose the background on the action bar, I would just like to remove the title and keep the…
0
votes
1 answer

What can I do in Android Honeycomb for MenuItem.isActionViewExpanded() and MenuItem.collapseActionView()

The methods MenuItem.isActionViewExpanded() and MenuItem.collapseActionView() were added in Android API version 14 (Ice cream sandwich), so they're not available in Android API versions 11-13 (Honeycomb). They're the only things that are stopping…
0
votes
1 answer

Can't compile app built with earlier version of android on newer version of Android

I have an existing Android app that was originally built using Android 11. However, the newest version of the ADT only allows me to compile with Android 17 so my app will not run. How do I get the newest version of ADT to run the existing app?