mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
729 B
17 lines
729 B
<?xml version="1.0" encoding="utf-8"?> |
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:tools="http://schemas.android.com/tools" |
|
android:id="@+id/swipeRefreshLayout" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_gravity="top" |
|
tools:viewBindingIgnore="true"> |
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
android:id="@+id/recyclerView" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:background="?android:attr/colorBackground" |
|
android:scrollbars="vertical" /> |
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|