aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fast_scroller.xml
blob: 4d37ca630588b5656ed24dcb157f6d069c06bcde (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="@dimen/FastScroller.RightMargin"
		android:layout_marginLeft="12dp"
		android:layout_height="wrap_content"
		android:src="@drawable/fast_scroller_handle"/>
</merge>