summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/article_images_image.xml
blob: 2b6d5856a6a7d49ec4a78eb718a38f5f01372fd5 (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
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/flavorImageHolder"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="invisible"
        android:text="@string/error_loading_image"
        android:id="@+id/flavor_image_error" />

    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:id="@+id/flavor_image_progress" />

    <it.sephiroth.android.library.imagezoom.ImageViewTouch
        android:id="@+id/flavor_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:layout_gravity="center"
        android:scaleType="fitCenter" />

</FrameLayout>