blob: d7447b00fe4d02cf7c9fa285255b13e93ae48cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="utf-8"?>
<ca.allanwang.kau.ui.widgets.ElasticDragDismissFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/kau_draggable"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:dragDismissDistance="@dimen/kau_drag_dismiss_distance_large"
app:dragDismissScale="0.95">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/kau_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/kau_drag_dismiss_distance"
android:background="?android:colorBackground" />
</ca.allanwang.kau.ui.widgets.ElasticDragDismissFrameLayout>
|