aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_post_gallery.xml
blob: 5153fd8fa55d61e85e841dbb10483c1cd6391162 (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:layout_marginBottom="8dp"
    app:cardElevation="2dp"
    app:cardCornerRadius="8dp"
    style="?attr/materialCardViewElevatedStyle">

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

    <ml.docilealligator.infinityforreddit.customviews.AspectRatioGifImageView
        android:id="@+id/image_view_item_post_gallery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone" />

    <ImageView
        android:id="@+id/image_view_no_preview_item_post_gallery"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:scaleType="center"
        android:background="@drawable/thumbnail_compact_layout_rounded_edge"
        android:visibility="gone" />

    <ImageView
        android:id="@+id/video_or_gif_indicator_image_view_item_post_gallery"
        android:layout_width="36dp"
        android:layout_height="36dp"
        android:layout_margin="16dp"
        android:layout_gravity="start"
        android:scaleType="center"
        android:background="@drawable/play_button_round_background"
        android:visibility="gone" />

    <TextView
        android:id="@+id/load_image_error_text_view_item_gallery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        app:drawableTopCompat="@drawable/ic_error_outline_black_24dp"
        android:layout_centerInParent="true"
        android:text="@string/error_loading_image_tap_to_retry"
        android:textSize="?attr/font_default"
        android:fontFamily="?attr/font_family"
        android:visibility="gone" />

    <TextView
        android:id="@+id/title_text_view_item_post_gallery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="16dp"
        android:paddingBottom="16dp"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        android:textSize="?attr/title_font_18"
        android:fontFamily="?attr/title_font_family"
        android:visibility="gone" />

</com.google.android.material.card.MaterialCardView>