summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/all_episodes_fragment.xml
blob: 7dd447bb2d5ece5bbbd4cd58a426ded1da4aaf9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:tools="http://schemas.android.com/tools"
             android:orientation="vertical"
             android:layout_width="match_parent"
             android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbarStyle="outsideOverlay"
        android:paddingTop="@dimen/list_vertical_padding"
        android:paddingBottom="@dimen/list_vertical_padding"
        android:clipToPadding="false"
        tools:listitem="@layout/new_episodes_listitem"
        tools:itemCount="13"/>

    <ProgressBar
        android:id="@+id/progLoading"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:indeterminateOnly="true"
        android:visibility="gone"
        tools:visibility="gone"
        tools:layout_width="match_parent"
        tools:layout_height="64dp"
        tools:background="@android:color/holo_red_light"/>

</FrameLayout>