aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fast_scroller.xml
blob: b2e244e35d178c3ea7f96cc011bba431096c9f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
	   xmlns:tools="http://schemas.android.com/tools"
	   android:layout_width="wrap_content"
	   android:layout_height="match_parent">

	<TextView
		android:id="@+id/fastscroller_bubble"
		android:layout_gravity="right|end"
		android:gravity="center"
		android:textSize="48sp" tools:text="A"
		android:layout_width="wrap_content"
		android:textColor="#FFffffff"
		android:layout_height="wrap_content"
		android:background="@drawable/fast_scroller_bubble"
		android:visibility="visible"/>

	<ImageView
		android:id="@+id/fastscroller_handle"
		android:layout_width="wrap_content"
		android:layout_marginRight="8dp"
		android:layout_marginLeft="8dp"
		android:layout_height="wrap_content"
		android:src="@drawable/fast_scroller_handle"/>
</merge>