summaryrefslogtreecommitdiffstats
path: root/android/source/res/layout/toolbar_color_picker.xml
blob: 6a8f81b2a84273b22a500984b2ea9bd204353a89 (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@color/toolbar_background"
    android:elevation="3dp"
    android:orientation="vertical"
    app:popupTheme="@style/LibreOfficeTheme.Toolbar"
    app:theme="@style/LibreOfficeTheme.Toolbar"
    tools:showIn="@layout/activity_main"
    app:layout_behavior="@string/bottom_sheet_behavior"
    app:behavior_hideable="true"
    app:behavior_peekHeight="0dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:orientation="vertical">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <ImageButton
                android:id="@+id/button_go_back_color_picker"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:background="@drawable/image_button_background"
                app:srcCompat="@drawable/ic_arrow_back_black_24dp" />

            <Button
                android:id="@+id/button_auto_color"
                android:layout_alignParentRight="true"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:background="@drawable/image_button_background"
                android:text="@string/automatic"
                app:drawableLeftCompat="@drawable/ic_auto_color" />

        </RelativeLayout>

        <androidx.recyclerview.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/fontColorView"
            >

        </androidx.recyclerview.widget.RecyclerView>

        <androidx.recyclerview.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/fontColorViewSub"
            android:layout_marginTop="20dp"
            android:layout_below="@id/fontColorView"
            android:layout_alignParentBottom="true">

        </androidx.recyclerview.widget.RecyclerView>


    </LinearLayout>



</LinearLayout>