mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-18 18:00:50 +02:00
27 lines
No EOL
1.1 KiB
XML
27 lines
No EOL
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/dialog_select_gesture"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/dialog_select_gesture_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_weight="1"
|
|
android:fadeScrollbars="false"
|
|
app:fastScrollEnabled="true"
|
|
app:fastScrollHorizontalThumbDrawable="@drawable/fast_scroll_thumb_drawable"
|
|
app:fastScrollHorizontalTrackDrawable="@drawable/fast_scroll_track_drawable"
|
|
app:fastScrollVerticalThumbDrawable="@drawable/fast_scroll_thumb_drawable"
|
|
app:fastScrollVerticalTrackDrawable="@drawable/fast_scroll_track_drawable" >
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</LinearLayout> |