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

On Google TV How do I make Fullscreen Activity hide title and button properly?

It would seem that the Fullscreen Activity Demo/Template does not behave the same on Google TV with the way Status/Navigation/Action bar are handled. Note: to make the default template work on Honeycomb I had to make a slight change to the provided…
dustmachine
  • 10,622
  • 5
  • 26
  • 28
0
votes
2 answers

Android HTTPS Progressive Streaming in Honeycomb 3.1 3.2

According to this page: http://developer.android.com/guide/appendix/media-formats.html Android 3.1 and 3.2 should support HTTPS progressive streaming, but I am having a hard time finding out how to do so because setDataSource for MediaPlayer only…
0
votes
1 answer

Media player closes while being resumed from recent apps. surface is invalid

I have following case which doesn't work right: Start video player(fragment with media player in activity) Press android home button.(video is paused) Resume activity from recent apps. Expected result: video is resumed. Actual result: activity is…
Jevgeni Smirnov
  • 3,787
  • 5
  • 33
  • 50
0
votes
1 answer

Android Actionbar compatibility alternate xml for pre-honeycomb

I am using the actiobarcompat sample in my application and I am trying to implement search for pre 3.0 devices.
0
votes
1 answer

getActionBar() = null for custom language

I've run into sort of a strange problem. I'm working on an application targetAPI = 11. I'm using theActionbar.TabListener to implement two tabs and everything works great. However I now created a new "values-de" folder for German strings to use for…
AreusAstarte
  • 1,958
  • 2
  • 17
  • 29
0
votes
0 answers

Setting one preferences entry to the default value

I'm looking for an easy way to handle integer and IP-type preference values in a PreferenceActivity. The idea is, to catch the changes in the onSharedPreferenceChanged listener. If the value doesn't fit the required type, it should be either reset…
Dark.Rider
  • 381
  • 1
  • 4
  • 17
0
votes
1 answer

Android: App stops working after requesting location updates in android simulator

My app stopped working after requesting location updates in android emulator. This happens only for android versions over 3.0. Any code like the following lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener); the…
0
votes
1 answer

android 3.0 honeycomb, finding and activating widgets

Android 3.0 activates widgets differently from 2.x and maybe 4.x I am trying to figure out how people accomodate this. Basically on android 2.x the expected functionality is that a widget is downloaded and immediately available for use and the…
CQM
  • 42,592
  • 75
  • 224
  • 366
0
votes
1 answer

EDIT: Working on a timing service with accelerometer. Why is the alarm manager toy code failing here though?

My friend and I are teaching ourselves android by programming a toy app, literally. We made a simple game that uses the accelerometer. The game is just a maze game with a ball. We use the accelerometer to detect movement and use tile detections to…
0
votes
1 answer

Android 3.0 and higher version issue

Thankyou for taking the time to look at my problem. I'm working on an android application and I keep getting an error in eclipse every time I use the parent="android.Theme.Holo.Light". I have my folder created using values-v11 indicating when to…
0
votes
1 answer

Custom ListView adapter using URL image getting error 'StrictMode'

İ am using this custom adapter for showing youtube thumbnail. public class MyMedyaAdapter extends SimpleAdapter { Context context; int layout; List> data; String[] from; int[] to; String resimURL =…
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

Android Honeycomb Strict Mode crashes app despite being AsyncTask

I am trying to run my app on a 3.2 Android Device (Honeycomb). Unfortunately, my app crashes whenever I try to edit one of the objects listed in my app using EditCaseActivity. Logcat seems to tell me that StrictMode is causing the crash, but I'm…
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
1 answer

Android HoneyComb Error using Actionbar

Honeycomb error android.os.NetworkOnMainThreadException after i set my target sdk to 11. I used the below codes to ignore it. Will it effect my app? Can somebody suggest anything to overcome this problem. StrictMode.ThreadPolicy policy = new…
KC Chai
  • 1,607
  • 9
  • 30
  • 59