mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-14 05:45:10 +01:00
2c6f64c5ae
* Solves #550 * Make sure only refresh can only happen when pulling down at top of update library list * Removed unused import
19 lines
696 B
XML
19 lines
696 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">
|
|
|
|
<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">
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout> |