Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been searching on and off for a few months for a solution to my problem. It involves assigning a header to specific items in a list. An example of how I want to end result to look like is how the Settings application separates options with headers.

If you open up the Settings app you are presented with a list of options, each of which opens up an Activity or Fragment. These options are grouped as follows:

Wireless and Network, Device, Personal, Accounts, and System.

I cannot find a view, or a style, with which I can reproduce those headers within my app. I've found a library called StickyGridHeaders (http://www.androidviews.net/2013/02/stickygridheaders/), which contains headers which look exactly like the ones I am trying to implement into my app.

Can anyone shed some light on this subject? Is there a particular view or library which I should be using or is this something I'll have to implement myself from scratch? Given the number of applications which use this style of categorization I find it very hard to believe that all of these devs have their own custom implementation, and yet look extremely alike.

A screenshot depicting what I'm after (the header listed under the "1" callout box):

enter image description here

Thanks in advance.

EDIT: Some apps which I know that do this:

  • Youtube
  • Prixing
share|improve this question
A screenshot of your mentioned settings views would be useful (>ouTube, Prixing...). Referring to your phones "settings", i would be surprised if there s a library for that. i guess it s simply a combination from nested TextView/ListViews in a ScrollView, so yes, you have to do it yourself. Those views have a standard layout that's why they look the same – longilong Feb 25 at 18:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.