blob: 36fc52c548bbea07257daf58362d33fcd026e57b [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"
5 android:background="@android:color/white"
alisionf7053602013-07-09 10:25:20 -04006 android:clickable="false"
7 android:focusable="false"
8 android:orientation="vertical" >
9
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"
22 android:layout_gravity="center_vertical" />
alisionf7053602013-07-09 10:25:20 -040023
Adrien Béraudb179bab2015-10-08 12:04:22 -040024 <ImageView
25 android:layout_width="fill_parent"
26 android:layout_height="1dp"
27 android:id="@+id/imageView2"
28 android:layout_gravity="bottom"
29 android:background="#e0e0e0"
30 android:layout_marginLeft="16dp"
31 android:layout_marginRight="16dp" />
32
33</FrameLayout>