mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
18 lines
720 B
XML
18 lines
720 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
|
||
|
|
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:id="@+id/inbox_refresh_layout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||
|
|
|
||
|
|
<android.support.v7.widget.RecyclerView
|
||
|
|
android:id="@+id/chat.list"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:clipToPadding="false"
|
||
|
|
android:divider="@null"
|
||
|
|
android:scrollbars="vertical" />
|
||
|
|
|
||
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|