summaryrefslogtreecommitdiffstats
path: root/res/layout/photopage_bottom_controls.xml
blob: fc98822804a1355eb916e4dfdaee6d7ce98bca10 (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
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/photopage_bottom_controls"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:layout_alignParentBottom="true"
    android:background="#42000000"
    android:orientation="horizontal"
    android:visibility="gone" >

    <ImageButton
        android:id="@+id/photopage_bottom_control_edit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentStart="true"
        android:layout_centerVertical="true"
        android:background="@null"
        android:paddingStart="20dp"
        android:layout_marginBottom="20dp"
        android:src="@drawable/edit"
        android:visibility="gone" />

    <ImageButton
        android:id="@+id/photopage_bottom_control_share"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="20dp"
        android:layout_centerInParent="true"
        android:layout_centerVertical="true"
        android:background="@null"
        android:src="@drawable/share"
        android:visibility="gone" />

    <ImageButton
        android:id="@+id/photopage_bottom_control_delete"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"
        android:layout_centerVertical="true"
        android:layout_marginBottom="20dp"
        android:background="@null"
        android:paddingEnd="20dp"
        android:src="@drawable/delete"
        android:visibility="gone" />

</RelativeLayout>