blob: efacedd945703e6373768d67b000cb205750dd51 [file] [log] [blame]
alisionf7053602013-07-09 10:25:20 -04001<?xml version="1.0" encoding="utf-8"?>
Adrien Béraudb179bab2015-10-08 12:04:22 -04002<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
alisionf7053602013-07-09 10:25:20 -04003 android:layout_width="match_parent"
Adrien Béraudb179bab2015-10-08 12:04:22 -04004 android:layout_height="48dp"
alisionf7053602013-07-09 10:25:20 -04005 android:clickable="false"
6 android:focusable="false"
Adrien Béraud1e532c72016-02-18 12:32:54 -05007 android:orientation="vertical"
8 android:background="?android:colorBackground">
alisionf7053602013-07-09 10:25:20 -04009
10 <TextView
11 android:id="@+id/header_letter"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 android:clickable="false"
15 android:focusable="false"
Adrien Béraudb179bab2015-10-08 12:04:22 -040016 android:textColor="@color/text_color_secondary"
alisionf7053602013-07-09 10:25:20 -040017 android:paddingLeft="5dp"
Adrien Béraudb179bab2015-10-08 12:04:22 -040018 android:textSize="16sp"
19 android:textStyle="bold"
20 android:layout_marginLeft="16dp"
21 android:text="A"
Adrien Béraudabd338e2015-12-12 01:57:31 -050022 android:layout_gravity="center_vertical"
23 android:layout_marginRight="16dp"
24 android:textAlignment="viewStart" />
alisionf7053602013-07-09 10:25:20 -040025
Adrien Béraudb179bab2015-10-08 12:04:22 -040026 <ImageView
27 android:layout_width="fill_parent"
28 android:layout_height="1dp"
29 android:id="@+id/imageView2"
30 android:layout_gravity="bottom"
31 android:background="#e0e0e0"
32 android:layout_marginLeft="16dp"
33 android:layout_marginRight="16dp" />
34
35</FrameLayout>