mirror of https://github.com/ThmmyNoLife/mTHMMY
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.
37 lines
1.4 KiB
37 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:id="@+id/swiperefresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<view
|
|
android:id="@+id/list"
|
|
android:name="gr.thmmy.mthmmy.sections.recent.RecentFragment"
|
|
class="gr.thmmy.mthmmy.utils.CustomRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
android:clipToPadding="false"
|
|
android:paddingBottom="4dp"
|
|
android:paddingTop="4dp"
|
|
app:layoutManager="LinearLayoutManager"
|
|
tools:context="gr.thmmy.mthmmy.sections.recent.RecentFragment"
|
|
tools:listitem="@layout/fragment_recent_row"/>
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="invisible"/>
|
|
|
|
</RelativeLayout>
|