| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 2 months |
| seen | Nov 7 '12 at 11:17 | |
| stats | profile views | 14 |
I hack and mash things http://about.me/vrashabh
|
Nov 2 |
comment |
Buttons placement convention in Android Thanks Tyler - Looks like Android users are used to the reverse from the guidelines guide :) |
|
Oct 29 |
comment |
Showing a question during a video in Android What I am going with |
|
Oct 29 |
comment |
Side navigation menus for Android tablets I am accepting this because I think pane layouts can be brilliantly used to create beautiful apps and one can have multiple panes and utilize the screen sizes efficiently |
|
Oct 8 |
comment |
Showing a question during a video in Android True! Exactly what I had in mind. The questions are generally one liners with simple options and an explanation . I was wondering if this is intuitive for the user, or would a flyout or some mechanism be better so the user always sees the video? |
|
Mar 2 |
comment |
Best way of representing Hierarchical data in android Thanks for your responses and patience. I pretty much have everything I need |
|
Mar 2 |
comment |
Best way of representing Hierarchical data in android But HorizontalScrollViews have no adapter capabilities - I need my data coming from a database - thats why I thought of a gallery - but gallery is a beast on its own. |
|
Mar 1 |
comment |
Best way of representing Hierarchical data in android But that is for a view pager right - I already have horizontal swipe lists in my app - adding a view pager to swipe between categories will totally confuse the user - so I am only looking for clickable buttons with arrows in the strip. I am looking at gallery with text views as buttons . But gallery centers the views - i need them to maintain positions on clicks. Is there a way to achieve that - or I am just going to have to use a horizontal scroll view and add buttons dynamically and not find a workaround to use an adapter along with it ? |
|
Feb 29 |
comment |
Best way of representing Hierarchical data in android But I cant seem to find a single place which can guide me to developing scrollable tabs with arrows for navigating. All the related stackoverflow questions seem to be unanswered. Can you guide me to the right location if you can please. |
|
Feb 29 |
comment |
Best way of representing Hierarchical data in android :) yeah I figured. The problem I have is not only is the hierarchy dynamically increasing but the visual appeal of the app also has to be maintained. List views with drill downs are not for me - hence I am creating my own horizontal visual lists.This way im cutting down on hierarchy by a factor of 2. Thanks! |
|
Feb 29 |
comment |
Best way of representing Hierarchical data in android Rendition here implies different versions of the app if you will - I have one apk which will allow me to download content based on what I need. If I need to study about animals/birds, I ll download that content and the tabs become animal,bird,reptile. But if i want to download content about plants I ll download that and my tabs become aves/sapiens/plants(context sensitive menu if you will). I hope you get what I am trying to say. This is only an example(or a lack of it). |
|
Feb 28 |
comment |
Best way of representing Hierarchical data in android Tx. I am using a view pager with tabs + scrollable lists to cut down on hierarchy and display as much data as possible in a single screen. But the prob I have is my top level pager tab grouping might change from one rendition of the app to another. So I feel this will create a confusion to the user. For instance I might have animal, bird, reptile in one rendition and aves, sapiens and plants in another. Is this confusion a real concern? Or are there apps that you know off like this. Also wht pattern is the CNN app(Also what pattern is the CNN app( goo.gl/heoof ) using for the menu? |
|
Feb 28 |
comment |
Best way of representing Hierarchical data in android +1 for the breadcrumbs - i was half way into implementing it with breadcrumbs when i saw this . Thanks! But the different levels im doing a combination of view pager and horizontal scrollable lists - dunno if that is a design pattern - but it seems to best represent what I am trying to do |
|
Feb 26 |
comment |
Best way of representing Hierarchical data in android Also I am trying to display data at one single glance as much as possible. |
|
Feb 26 |
comment |
Best way of representing Hierarchical data in android @Jorn Thanks! This was what I initially built and rejected because a. I can have 6 levels of hierarchy Drill downs can become really painful b. I want to visually represent data in a way it stands out c. And I am building a tablet app so there is more room to work with. Can you think of better ways to do this. |