tt-rss-android/org.fox.ttrss/src/main/res/layout/article_images_image.xml
Andrew Dolgov f8bc884ad3 remove X more image prompt
implement pager-based browser for article images, enabled if more than one detected
add (unused) dimens for activity margins
2014-10-29 16:23:07 +03:00

29 lines
983 B
XML

<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" />
<org.fox.ttrss.util.EnlargingImageView
android:id="@+id/flavor_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:visibility="visible" />
</FrameLayout>