aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_uploaded_image.xml
blob: 6fb4b589a88d796e8b4cbd32a87e83b515b8ca1d (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="16dp"
    android:clickable="true"
    android:focusable="true"
    android:background="?attr/selectableItemBackground">

    <TextView
        android:id="@+id/image_name_item_uploaded_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fontFamily="?attr/font_family"
        android:textSize="?attr/font_16"
        android:textColor="?attr/primaryTextColor" />

    <TextView
        android:id="@+id/image_url_item_uploaded_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="4dp"
        android:fontFamily="?attr/font_family"
        android:textSize="?attr/font_12"
        android:textColor="?attr/secondaryTextColor" />

</LinearLayout>