aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/stats_activity_view_all.xml
blob: 1467893dd107c13dbaab66bd3ff7b0d590088a03 (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
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<org.wordpress.android.util.widgets.CustomSwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ptr_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/grey_lighten_30">

    <org.wordpress.android.ui.stats.ScrollViewExt xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scroll_view_stats"
        android:fillViewport="true">

        <LinearLayout
            android:id="@+id/stats_fragment_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="@dimen/margin_medium"
            android:orientation="vertical">

            <org.wordpress.android.widgets.WPTextView
                android:id="@+id/stats_summary_date"
                android:textAppearance="?android:attr/textAppearance"
                android:textSize="@dimen/text_sz_large"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/margin_large"
                android:textColor="@color/stats_blue_labels"
                android:gravity="center"
                tools:text="Date"/>

            <FrameLayout
                android:id="@+id/stats_single_view_fragment"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/margin_large"
                android:layout_marginLeft="@dimen/content_margin"
                android:layout_marginRight="@dimen/content_margin" />

        </LinearLayout>
    </org.wordpress.android.ui.stats.ScrollViewExt>
</org.wordpress.android.util.widgets.CustomSwipeRefreshLayout>