mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
23 lines
No EOL
802 B
XML
23 lines
No EOL
802 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/swipe_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:descendantFocusability="blocksDescendants"
|
|
tools:listitem="@layout/item_recent_chapters"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout> |