summaryrefslogtreecommitdiff
path: root/main/src/ui/res/layout-v21/profile_list_fabs.xml
blob: 4fe403b687b29528e3e5a70aeac907a1efe5a9fa (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
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (c) 2012-2016 Arne Schwabe
  ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
  -->

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:ignore="InconsistentLayout">

    <ImageButton
        android:id="@+id/fab_import"
        android:layout_width="@dimen/round_button_diameter"
        android:layout_height="@dimen/round_button_diameter"
        android:layout_gravity="end|bottom"
        android:tint="@android:color/white"
        android:background="@drawable/oval_ripple"
        android:elevation="@dimen/elevation_low"
        android:layout_marginBottom="@dimen/add_button_margin_topfab"
        android:layout_marginEnd="@dimen/add_button_margin"
        android:src="@drawable/ic_archive_grey600_24dp"
        android:contentDescription="@string/import_config" />

    <ImageButton
        android:contentDescription="@string/add_profile"
        android:id="@+id/fab_add"
        android:layout_width="@dimen/round_button_diameter"
        android:layout_height="@dimen/round_button_diameter"
        android:layout_gravity="end|bottom"
        android:tint="@android:color/white"
        android:background="@drawable/oval_ripple"
        android:elevation="@dimen/elevation_low"
        android:layout_marginBottom="@dimen/add_button_margin"
        android:layout_marginEnd="@dimen/add_button_margin"
        android:src="@android:drawable/ic_input_add" />

</merge>