Honeycomb is the third major version of the Android operating system, optimized for tablets and similar devices. It is not intended for use on phones, like all the previous Android versions were. For an overview of the new features introduced in each iteration of Honeycomb, take a look at the ...
35
votes
1answer
8k views
Honeycomb Android emulator is dog slow - will it get manageable before the official release? [closed]
I thought the Gingerbread emulator was slow, but man - the Honeycomb emulator is so slow on a modern PC, it's practically unusable. Since Reto Meier asked to throw up our Honeycomb questions onto ...
30
votes
5answers
6k views
MapView in a Fragment (Honeycomb)
now that the final SDK is out with google apis - what is the best way to create a Fragment with a MapView? MapView needs a MapActivity to work right.
Having the Activity managing the Fragments ...
30
votes
2answers
3k views
Loaders in Android Honeycomb
I'm trying to figure out how to use Loaders in Android 3.0 but can't seem to get it to work. The docs only describe using CursorLoader but I'm using AsyncTaskLoader.
From the docs it seems that you ...
24
votes
8answers
3k views
Wanted: offline IDE for developing Html / JavaScript on Android Tablet
I don't know if this is the right place to ask this question, so if I'm wrong please redirect me to the right stack exchange site.
In a few days I'm getting my new Motorola Xoom and I would like to ...
22
votes
5answers
3k views
Strategies for Honeycomb & backward compatibility
So we've seen the preview sdk and the neat new stuff like ActionBar and Fragments. Making a lot of method calls will be unavoidable to make use of these, so what strategies are there for maintaining 1 ...
20
votes
5answers
11k views
Is there a way to hide the system bar in Android 3.0? It's an internal device and I'm managing navigation
In Android 2.3 and below, you could make an application full screen, and then "hijack" the menu/back/search buttons by just returning false onKeyDown()... and registering the app as a default home ...
16
votes
1answer
7k views
Android Fragments and animation
How should you implement the sort of sliding that for example the Honeycomb Gmail client uses?
Can TransactionManager handle this automatically by adding and removing the Fragments, it's kind of ...
13
votes
2answers
3k views
Fragment without a view crashes on configuration change
I have an UI where I need a Fragment to be displayed (with a view) in landscape mode but not in portrait mode. In portrait mode it should still be available but will display its result using ...
12
votes
4answers
339 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) ...
12
votes
2answers
1k views
Custom preference, targetSdkVersion=“11”: missing indent?
I have a couple of custom DialogPreference implementations floating around, such as this one:
package apt.tutorial;
import android.content.Context;
import android.content.res.TypedArray;
import ...
10
votes
3answers
880 views
Tap outside Android dialog to dismiss it?
I was wondering if it's possible to somehow tap outside a popup dialog (or an Activity with a dialog theme), and dismiss it by just tapping outside of it?
I made a quick picture to illustrate it:
...
10
votes
1answer
221 views
Setting targetSdkVersion=“13” causes Activities to ignore android:configChanges=“orientation” flag
It appears that API level 13 has ("silently" as far as I can tell) introduced a change to how android:configChanges attribute is handled.
In my particular case, when "targetSdkVersion" in the app ...
10
votes
2answers
2k views
How to set the title of DialogFragment?
This should be a simple task, but for some reason I can find a way to set the title of a DialogFragment. (I am setting the dialog contents using "onCreateView" overload).
The default style leaves a ...
9
votes
5answers
814 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 ...
9
votes
5answers
955 views
android - How to set custom layout for PreferenceActivity in Android 3.0?
I am developing app with minSdkVersion="11", that is app for tablets and Android 4.0 and newer. I have scrutinized internet on this topic, but have not found much.
To implement custom layout for ...
9
votes
3answers
765 views
Is there a standard way to add dividers between action bar items in Android 3.0?
I have a slight problem trying to customise the look of the action bar in my app. I want to be able to have the pixel wide dividers to group action bar items that you see in many of the native apps ...
9
votes
5answers
2k views
Application does not show up in Android Market for Motorola XOOM tablet
We have an android application, manifest of which sets the following configurations:
minsdkVersion = "4"
<supports-screens
android:normalScreens="true"
...
8
votes
4answers
1k views
Using 3.1's USB host mode with Arduino
Is there a good tutorial for using an Arduino with an Android where the Android device is the USB host? (The Android device has OS version 3.1 (Honeycomb) or later). The only host program on the ...
8
votes
1answer
467 views
How to handle the “paste” event in Android 3.0(Honeycomb)?
I have a customized EditText, which need to do customized "paste".
I overrode onTextContextMenuItem(int id) to handle "paste" requested by selecting context menu.
@Override
public boolean ...
7
votes
2answers
208 views
TextView setScaleX()/setScaleY() and setTextIsSelectable(true) selection
I have TextView and want to use setScaleX()/setScaleY() to make the text zoomable. But when I try to select some text by calling someTextView.setTextIsSelectable(true); and TextView has zoom other ...
7
votes
1answer
238 views
Show fragment as a dialog or as a usual activity
In my app I've got a fragment which is called "About". On handhelds I want this fragment to look like a usual activity but on tablets I want it to be a dialog. Which way is preferred to handle this ...
7
votes
8answers
2k views
How to get screen resolution in Android Honeycomb?
I want to get real resolution of screen on Android Honeycomb.
Here's my code
Display display = getWindowManager().getDefaultDisplay();
int w = display.getWidth();
int h = display.getHeight();
My ...
7
votes
1answer
341 views
Which theme attribute changes the text color of an EditText's error message
In my form I use setError("") on an EditText field. My Application-Theme extends android:Theme.Holo.
I have manually set an image with a dark background for android:errorMessageBackground and ...
7
votes
2answers
840 views
Honeycomb (3.1) adjustResize no longer working?
My activity has android:windowSoftInputMode="adjustResize" and behaves accordingly in Android 2.1:
Before soft keyboard appears
With keyboard
However, in Honeycomb the soft keyboard does not ...
7
votes
1answer
371 views
Porting a 100 Activities app to Fragments without dying
I have developed a huge app for a bank. This app gives the user the ability to perform a big bunch of operations through the phone (national & international transfers, securities, stock market ...
7
votes
2answers
2k views
Was PreferenceFragment intentionally excluded from the compatibility package?
I'm looking to write preferences that can be applied to both 3.0 and pre-3.0 devices. Discovering that PreferenceActivity contains deprecated methods (although these are used in the accompanying ...
7
votes
1answer
6k views
How do I add a Fragment to an Activity with a programmatically created content view
I want to add a Fragment to an Activity that implements its layout programatically. I looked over the Fragment documentation but there aren't many examples describing what I need. Here is the type of ...
7
votes
5answers
4k views
Is possible install Eclipse IDE in a Galaxy Tab?
Since Eclipse can run in Linux and this tablet has the new Honeycomb (Linux Kernel), can Eclipse IDE run in Android Honeycomb ?
I know that isn't pretty much comfortable coding in a tablet, but I'd ...
7
votes
1answer
1k views
Technical details of Android Garbage Collector
As I'm doing a research on commonalities/differences of various mobile platforms, one of the aspects under investigation is memory management. As such, I'm interested in more detailed technical ...
7
votes
5answers
2k views
Android preferences freeze when using ADT Plugin v9 with Eclipse on Mac?
I just installed Eclipse 3.6.1 and added the ADT Plugin v9 on Mac OS X 10.6.6. When I go to preferences to add the path to the Android SDK, I get a popup with "Thanks for using the Android SDK!" with ...
6
votes
1answer
164 views
Android 3.0 - How to retrieve ALL contacts via ContactsContract
I am working on an Android Honeycomb (v3.0) application that has a requirement of displaying ALL contacts stored within the Google account that is registered on the device. One of the problems I am ...
6
votes
4answers
575 views
OutOfMemory error though free memory is available
I'm seeing a pretty odd problem. Essentially sometimes large bitmap memory allocations will fail even though there's apparently tons of memory. There are a number of posts that appear to ask a similar ...
6
votes
3answers
441 views
Patterns when to use Activity Transition vs Dynamic Fragments
Are there any patterns on how to handle UI Transitions in Android Activities vs Fragments? I am currently looking into a UI that has at most 3 columns in Landscape.
I would like the UI to start with 1 ...
6
votes
2answers
1k views
getActionBar() returns null
I'm having an odd problem.
I am making an app with targetsdk 13.
In my main activity's onCreate method i call getActionBar() to setup my actionbar. This works fine when running on the Android 3.2 ...
6
votes
4answers
970 views
Android ListFragment doesn't save the bundle in onSaveInstanceState()/doesn't retrieve bundle in onActivityCreated()
I'm new to android and I'm facing the following problem. I'm developing for both, Android 2 and 3, and this is why I use fragments. However to make the app working on Android 2 devices I import ...
6
votes
2answers
3k views
Android Honeycomb: NetworkOnMainThreadException even when using AsyncTask and no strict mode?
I run into a NetworkOnMainThreadException with my Android 3.0 app.
Searching for a solution I found this, but if I understand this correctly, default setting would be that the strict mode is turned ...
6
votes
2answers
679 views
Ongoing notification on Android honeycomb has inconsistent behavior
I have an ongoing notification for downloading files in the background. I have been successful in creating an multiple simultaneous updating progress bar notifications that are also able to be ...
6
votes
1answer
884 views
Contextual Action Bar in Honeycomb
I'm looking to copy the action bar implementation from the gmail app in Honeycomb
Unfortunately I can't post an image because I'm new here.
Basically, when you select an email or more your action ...
6
votes
1answer
4k views
Implementing ActionBar tabs with v4 Fragments API
My app is currently using the Fragments/v4 compatibility package to support Android versions all the way down to 1.6. This means all my Fragments inherit from the compatibility package's version of ...
6
votes
2answers
3k views
android honeycomb menu button target
I am trying to get my app to be backward compatible so i need to show the menu button
since we used the menu button in our app on previous versions.
So I was reading and it says that if your target ...
6
votes
2answers
5k views
Enable hardware acceleration in Android app, targeting Honeycomb AND prior versions
To enable hardware acceleration in an Android 3.0+ app I can do this:
<application android:hardwareAccelerated="true" ... />
But the app won't build with that attribute present if I target an ...
6
votes
1answer
3k views
Style an Action Bar in Android Honeycomb
I'd like to set the background of an action bar (Honeycomb) using themes and styles. You can do it in code with ActionBar.setBackgroundDrawable(Drawable), but I can't find the corresponding style ...
6
votes
1answer
3k views
Change theme according to android version
I am preparing my app to work smoothly with honeycomb. I have an small aesthetics question regarding with the android theme.
For honeycomb it is recommended that the following theme is used.
...
6
votes
2answers
5k views
Where is API call to do “lights out mode” in honeycomb?
I am working on a game and would like to have the full screen to itself.
Did anyone found a way to make the app go full screen on Android Honeycomb preview emulator?
5
votes
3answers
102 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
1answer
81 views
HttpClient execution of HttpPost significantly slower on Android 3.2 than 2.3.3
Anyone know why the code below would run about 4 times slower on Android 3.2 (Samsung Galaxy 10.1" Tab) than it does on 2.3.3 (Motorola Droid X)?
On Android 2.3.3, the client.execute() call takes on ...
5
votes
1answer
311 views
Android and Honeycomb - how to have a menu icon with SDK 13 without having an “action bar”
I would like to maximize use of the screen for a Honeycomb app. Since the bottom of the screen is already stuck with "always-on" items, I'd like to add a menu button down there in that space rather ...
5
votes
3answers
1k views
Implementing horizontal/vertical finger swipe scrolling in android honeycomb webview/webkit?
I am planning to implement Honeycomb tablet application based on WebView (so, basically it'll be a HTML5 web based application made only for tablet).
I am looking to implement horizontal and vertical ...
5
votes
1answer
715 views
Honeycomb themes *.NoActionBar or *.NoTitleBar - where is Menu button?
My manifest setup:
targetSdkVersion=11
I have Activity with theme set to android:style/Theme.Holo.NoActionBar or android:style/Theme.NoTitleBar
Desired result: app that doesn't show top bar (action ...
5
votes
1answer
2k views
Flash in WebView not working on Android 3.2
I am having a problem that only happens on my Motorola Xoom which I have updated to 3.2 through OTA. I have a simple application that uses a WebView to load a small html that has flash content in it. ...