aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_post_card_3_text.xml
blob: 5202b2d1fd51c15b1fd0533f240fe83174a3120d (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_marginTop="8dp"
    android:layout_marginBottom="8dp"
    android:layout_marginStart="16dp"
    android:layout_marginEnd="16dp"
    app:cardCornerRadius="12dp"
    style="?attr/materialCardViewFilledStyle">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="16dp">

            <ml.docilealligator.infinityforreddit.customviews.AspectRatioGifImageView
                android:id="@+id/icon_gif_image_view_item_post_card_3_text_type"
                android:layout_width="24dp"
                android:layout_height="24dp"
                android:layout_gravity="center"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"/>

            <TextView
                android:id="@+id/subreddit_name_text_view_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginStart="16dp"
                android:layout_marginEnd="8dp"
                android:textSize="?attr/font_default"
                android:fontFamily="?attr/font_family"
                app:layout_constraintBottom_toTopOf="@id/user_text_view_item_post_card_3_text_type"
                app:layout_constraintStart_toEndOf="@id/icon_gif_image_view_item_post_card_3_text_type"
                app:layout_constraintEnd_toStartOf="@id/stickied_post_image_view_item_post_card_3_text_type"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constrainedWidth="true"
                app:layout_constraintHorizontal_bias="0" />

            <TextView
                android:id="@+id/user_text_view_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="16dp"
                android:layout_marginEnd="8dp"
                android:textSize="?attr/font_default"
                android:fontFamily="?attr/font_family"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@+id/icon_gif_image_view_item_post_card_3_text_type"
                app:layout_constraintEnd_toStartOf="@id/stickied_post_image_view_item_post_card_3_text_type"
                app:layout_constraintTop_toBottomOf="@+id/subreddit_name_text_view_item_post_card_3_text_type"
                app:layout_constraintHorizontal_bias="0"
                app:layout_constrainedWidth="true" />

            <ImageView
                android:id="@+id/stickied_post_image_view_item_post_card_3_text_type"
                android:layout_width="24dp"
                android:layout_height="24dp"
                android:layout_marginEnd="8dp"
                android:visibility="gone"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toStartOf="@+id/guideline2"
                app:layout_constraintTop_toTopOf="parent"
                tools:visibility="visible" />

            <TextView
                android:id="@+id/post_time_text_view_item_post_card_3_text_type"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:gravity="end"
                android:textSize="?attr/font_default"
                android:fontFamily="?attr/font_family"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toEndOf="@id/guideline2"
                app:layout_constraintTop_toTopOf="parent" />

            <androidx.constraintlayout.widget.Guideline
                android:id="@+id/guideline2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                app:layout_constraintGuide_percent="0.6" />

        </androidx.constraintlayout.widget.ConstraintLayout>

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

        <TextView
            android:id="@+id/content_text_view_item_post_card_3_text_type"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:paddingStart="16dp"
            android:paddingEnd="16dp"
            android:maxLines="4"
            android:visibility="gone"
            android:textSize="?attr/content_font_default"
            android:fontFamily="?attr/content_font_family"
            android:ellipsize="end" />

        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/bottom_constraint_layout_item_post_card_3_text_type"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="8dp"
            android:paddingStart="4dp"
            android:paddingEnd="4dp">

            <com.google.android.material.button.MaterialButton
                style="?attr/materialIconButtonStyle"
                android:id="@+id/upvote_button_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:paddingStart="8dp"
                android:paddingEnd="8dp"
                android:minWidth="0dp"
                android:backgroundTint="#00000000"
                app:strokeWidth="0dp"
                app:icon="@drawable/ic_upvote_24dp"
                app:iconSize="24dp"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toStartOf="parent" />

            <TextView
                android:id="@+id/score_text_view_item_post_card_3_text_type"
                android:layout_width="64dp"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textSize="?attr/font_12"
                android:textStyle="bold"
                android:fontFamily="?attr/font_family"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@id/upvote_button_item_post_card_3_text_type" />

            <com.google.android.material.button.MaterialButton
                style="?attr/materialIconButtonStyle"
                android:id="@+id/downvote_button_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:paddingStart="8dp"
                android:paddingEnd="8dp"
                android:minWidth="0dp"
                android:backgroundTint="#00000000"
                app:strokeWidth="0dp"
                app:icon="@drawable/ic_downvote_24dp"
                app:iconSize="24dp"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@id/score_text_view_item_post_card_3_text_type" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/comments_count_button_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingStart="8dp"
                android:paddingEnd="8dp"
                android:minWidth="0dp"
                android:textSize="?attr/font_12"
                android:textStyle="bold"
                android:fontFamily="?attr/font_family"
                app:strokeWidth="0dp"
                app:icon="@drawable/ic_comment_grey_24dp"
                app:iconTint="@null"
                app:iconSize="24dp"
                app:iconPadding="12dp"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@id/downvote_button_item_post_card_3_text_type"
                style="?attr/materialIconButtonOutlinedStyle" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/save_button_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:strokeWidth="0dp"
                app:iconSize="24dp"
                app:layout_constraintHorizontal_bias="1"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@id/comments_count_button_item_post_card_3_text_type"
                app:layout_constraintEnd_toStartOf="@id/share_button_item_post_card_3_text_type"
                style="?attr/materialIconButtonOutlinedStyle" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/share_button_item_post_card_3_text_type"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:strokeWidth="0dp"
                app:icon="@drawable/ic_share_grey_24dp"
                app:iconSize="24dp"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                style="?attr/materialIconButtonOutlinedStyle" />

        </androidx.constraintlayout.widget.ConstraintLayout>

    </LinearLayout>

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