summaryrefslogtreecommitdiffstats
path: root/android/source/res/layout/toolbar_color_picker.xml
blob: 2e2aed41abf91d26217b915cd2149f7f44847033 (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
<?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:id="@+id/toolbar_color_picker"
    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="android.support.design.widget.BottomSheetBehavior"
    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">
        <ImageButton
            android:id="@+id/button_go_back_color_picker"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_arrow_back_black_24dp"
            android:background="@drawable/image_button_background"
            android:layout_marginBottom="10dp"/>

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

        </android.support.v7.widget.RecyclerView>

        <android.support.v7.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">

        </android.support.v7.widget.RecyclerView>


    </LinearLayout>



</LinearLayout>