summaryrefslogtreecommitdiffstats
path: root/res/layout/settings_transitions_screen.xml
blob: 5850e27c5d93591c771cc72324b36bce7fe8d419 (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
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center_horizontal|bottom"
    android:background="@color/settings_bg_color"
    android:orientation="vertical"
    android:paddingBottom="@dimen/overview_panel_bottom_padding"
    android:paddingTop="@dimen/overview_panel_bottom_padding"
    android:clickable="true" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <LinearLayout
            android:id="@+id/transition_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:background="@drawable/listitem_bg"
            android:layout_alignParentLeft="true"
            android:clickable="true" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:adjustViewBounds="true"
                android:src="@drawable/action_navigation_previous_light" />

            <TextView
                android:id="@+id/transition_effect_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/scroll_effect_text"
                android:textAllCaps="true"
                android:textColor="@color/listitem_text"
                android:layout_gravity="center_vertical"
                android:textSize="16sp" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_alignParentRight="true"
            android:background="@drawable/listitem_bg"
            android:clickable="true" >

            <ImageView
                android:id="@+id/transition_options_menu"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:adjustViewBounds="true"
                android:src="@drawable/overflow_options_menu" />
        </LinearLayout>
    </RelativeLayout>

    <ImageView
        android:id="@+id/settings_transition_image"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:layout_gravity="center_horizontal"
        android:adjustViewBounds="true" />

    <ListView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/settings_transitions_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:listSelector="@android:color/transparent"
        android:splitMotionEvents="false"/>
</LinearLayout>