Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8506c95d authored by tibbi's avatar tibbi
Browse files

move the fastscroller handle in a separate layout file

parent 5d93b1c9
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -40,13 +40,7 @@
            android:paddingLeft="@dimen/normal_margin"
            android:paddingStart="@dimen/normal_margin">

            <ImageView
                android:id="@+id/filepicker_fastscroller_handle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="end"
                android:alpha="0"
                android:background="@drawable/fastscroller_handle_vertical"/>
            <include layout="@layout/fastscroller_handle_vertical"/>

        </com.simplemobiletools.commons.views.FastScroller>
    </RelativeLayout>
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<merge
    xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageView
        android:id="@+id/filepicker_fastscroller_handle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end"
        android:alpha="0"
        android:background="@drawable/fastscroller_handle_vertical"/>

</merge>