3
votes
1answer
55 views

Keyboard hiding lower buttons on small Android screens

I have a application (Android) which have scroll activity form. On which there is a button for next screen (lowest of scroll). It's looking fine on large screens of android devices. But keyboard hides ...
2
votes
1answer
68 views

In Android application, when to use View control instead of Tab

I develop a shopping application for one company. First time I design to use Tab to categorize product in shop. But I am not sure Ishould use "View control" instead of "Tab" or not. Tab and View ...
3
votes
1answer
119 views

Navigation Design for GoogleTV

I'm doing some research on ways to navigate on a GoogleTV. There aren't any design guidelines, but it seems a Left Menu Bar design, like the GTv YouTube app, is common use. In my opinion it doesn't ...
9
votes
3answers
532 views

Android: Back Button Only vs. Extra Navigation

General UX question for Android: Assume a simple view (activity or fragment) hierarchy, like so: A --> B. The transition from A to B is added to Android's back stack. On screen B, is it best to ...
7
votes
4answers
291 views

UX idiom for closing activity: X-icon vs up-button vs back button

We're launching a search activity when hitting the global search button (i.e. the hardware search key, if present, or a search icon in the Action Bar.) It should be noted here that the search activity ...
11
votes
4answers
449 views

Is there a better solution than breadcrumbs to cascading categories on mobile?

I am working on a mobile application (Android ICS based) where I need to show a lot of products on screen. Now the products are categorized in several categories which are on X level, where X is ...
1
vote
3answers
553 views

Android app - Look and feel

I'm developing my first app for Android. It's a small productivity app for smartphones and tablets. (I'm using Flash CS5 and Adobe Air to build it.) Is it recommended to use/copy the native Android ...
5
votes
2answers
697 views

Multi Select hierarchy for Mobile Design

I am working on a native application which will user to select multiple level of a hierarchy and perform some filtering. So for example we have multiple level of category of products like Home Care > ...
4
votes
2answers
2k views

Side navigation menus for Android tablets

The new trend of side navigation menus has taken over Android apps - Facebook, Evernote and now youtube and google+ are all doing the side navigation menu like here: Though it seems like this has ...
4
votes
3answers
2k views

Swipe to expand/collapse left hand navigation

My Android application has a left hand navigation menu similar to the Google TV left hand menu bar. I can programmatically collapse and expand it to make more or less room on the screen. In the narrow ...
5
votes
3answers
420 views

On Android, how do you design a very shallow navigation?

I need to create a simple account section in my mobile app with 1-level deep navigation: ___ Register / Account -- \___ Login On iPhone, I'm using a grouped table ...
1
vote
2answers
847 views

Android list layout for search results

I'm making an android app that queries an http endpoint and displays the results with a list. Currently the results appear 10 at a time which the user navigates with next/prev. buttons. The other day ...