Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a video app that contains 4 Channels each Channel Contains Shows and each Show contains Episodes now in The show view the user have the option to select "Recent" and "Feature" to see the Recent or the featured Episode in the opened show What i have tried :

I make a Grid (2 * 2) that displays the Channel in the Main Activity when the user clicks on a Channel I displays the Episodes from all shows in that channel in a listView and in the action bar i displays a spinner that permit the user to select a show . now also above the listview i display a spinner that contains 2 button "recent" and "featured".

I want a better UI/UX and follow the standards . and i hate the first Activity that displays the Channel with the 4 Big button . Please Help.

share|improve this question

1 Answer

Your data appears to be a classic tree structure:

  • Channel 1
    • Show 1
      • Episode 1
      • Episode 2
      • ...
    • Show 2
      • Episode 1
      • ...
    • ...
  • Channel 2
    • Show 1
      • Episode 1
      • ...
    • Show 2
      • Episode 1
      • ...
    • ...
  • ...

So the "classic" answer would be to just have a series of vertical lists:

  • Channel 1
  • Channel 2
  • Channel 3
  • Channel 4

A user selects a channel and the page slides to display the shows on that channel:

  • Show 1
  • Show 2
  • ...

A user selects a show and the page slides to display the episodes of that show:

  • Episode 1 of Show
  • Episode 2 of Show
  • ...

Using a vertical list instead of a series of tiles makes it more future-proof, if you were to add another channel at a later date.

You said that currently after selecting a channel, it shows the episodes of all shows on that channel. Is that to allow a user to get to episodes with fewer touches? If so, rather than re-engineering the UI, try adding features to let the user find things more easily, e.g.:

  • An "all episodes" option once a user has selected a channel
  • A search box at the top of every screen
  • Buttons to filter "recent" and "featured" episodes

etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.