summaryrefslogtreecommitdiffstats
path: root/res/layout/album_set_item.xml
blob: 46084e938033da26c9863cdaab9299a7fd791f19 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:background="#FFF" >

    <TextView
        android:id="@+id/album_set_item_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/album_set_item_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/album_set_item_title"
        android:layout_below="@+id/album_set_item_title"
        android:layout_marginBottom="10dp"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <ImageView
        android:id="@+id/album_set_item_image"
        android:layout_width="match_parent"
        android:layout_height="@dimen/album_set_item_image_height"
        android:layout_below="@+id/album_set_item_date"
        android:scaleType="centerCrop" />

    <ProgressBar
        android:id="@+id/album_set_item_upload_progress"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="invisible"
        android:layout_alignParentBottom="true" />
</RelativeLayout>