summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/image_gallery_item.xml
blob: bd2fc7a69cc1444bfdf44f0b48dce4d06294ecc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
<com.android.volley.toolbox.NetworkImageView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/gallery_thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <TextView
            android:id="@+id/gallery_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/gallery_thumbnail"
            android:textSize="10dp"/>
</RelativeLayout>