summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/article_images_pager.xml
blob: 7a5aab8af986622ed4adbd85def30c9b7d9e82ab (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/article_images"
    android:layout_width="fill_parent"
    android:fitsSystemWindows="true"
    android:background="?headlinesBackground"
    android:layout_height="fill_parent">
/*
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"> */

    <org.fox.ttrss.ArticleImagesPager
        android:id="@+id/article_images_pager"
        android:layout_alignParentTop="true"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

    <ProgressBar
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/article_images_progress"
        android:progress="0"
        android:indeterminate="false"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

</RelativeLayout>