EtchDroid/app/src/main/res/layout/fragment_select_usb_drive.xml

16 lines
613 B
XML
Raw Normal View History

2018-08-12 14:33:11 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-13 23:32:02 +00:00
<android.support.v4.widget.SwipeRefreshLayout
2018-08-12 14:33:11 +00:00
xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-13 23:32:02 +00:00
android:id="@+id/usbdevs_refresh_layout"
2018-08-12 14:33:11 +00:00
android:layout_width="match_parent"
2018-08-13 23:32:02 +00:00
android:layout_height="match_parent">
2018-08-12 14:33:11 +00:00
2018-08-13 23:32:02 +00:00
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/usbdevs_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"/>
2018-08-12 14:33:11 +00:00
2018-08-13 23:32:02 +00:00
</android.support.v4.widget.SwipeRefreshLayout>