mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
55 lines
2.2 KiB
XML
55 lines
2.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.design.widget.CoordinatorLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@color/bg_light_grey">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||
|
|
||
|
<android.support.v4.widget.SwipeRefreshLayout
|
||
|
android:id="@+id/swipe_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/recycler_characters"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||
|
android:clipToPadding="false"/>
|
||
|
|
||
|
</android.support.v4.widget.SwipeRefreshLayout>
|
||
|
|
||
|
<ProgressBar
|
||
|
style="?android:attr/progressBarStyleLarge"
|
||
|
android:id="@+id/progress_indicator"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"/>
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:fitsSystemWindows="true">
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
app:layout_scrollFlags="scroll|enterAlways"
|
||
|
android:background="@color/primary"
|
||
|
android:theme="@style/AppTheme.ActionBar"/>
|
||
|
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|