Eloi Navarro
Eloi Navarro

Reputation: 1445

How to code Android 4.0 style section

As shown in the new design guidelines,

Google showed us a built-in way to display sections.

Is this kind of section a specific Layout? can I "hard-code" previously known sections in a form-like app?

Thank you

Upvotes: 3

Views: 722

Answers (1)

Richard
Richard

Reputation: 14625

Found out it was same as before:

 <TextView
        android:id="@+id/txt_section"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Section text"
        style="?android:attr/listSeparatorTextViewStyle"/>

Upvotes: 4

Related Questions