blob: 2dc89559ac02b375c22786cdd680853e35b8b2c9 [file] [log] [blame]
Brian Attwell89ee3952014-07-09 16:40:39 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070017<!-- This expects to be included inside a RelativeLayout or a CoordinatorLayout -->
Brian Attwell89ee3952014-07-09 16:40:39 -070018<FrameLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/floating_action_button_container"
21 android:layout_width="@dimen/floating_action_button_width"
22 android:layout_height="@dimen/floating_action_button_height"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070023 android:layout_alignParentBottom="true"
Brian Attwell89ee3952014-07-09 16:40:39 -070024 android:layout_alignParentEnd="true"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070025 android:layout_gravity="bottom|end"
26 android:layout_marginBottom="@dimen/floating_action_button_margin_bottom"
27 android:layout_marginEnd="@dimen/floating_action_button_margin_right"
28 android:background="@drawable/fab_blue"
29 android:elevation="@dimen/design_fab_elevation">
Brian Attwell89ee3952014-07-09 16:40:39 -070030
31 <ImageButton
32 android:id="@+id/floating_action_button"
33 android:layout_width="match_parent"
34 android:layout_height="match_parent"
35 android:background="@drawable/floating_action_button"
Brian Attwell89ee3952014-07-09 16:40:39 -070036 android:contentDescription="@string/action_menu_add_new_contact_button"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070037 android:src="@drawable/ic_add"
38 android:tint="@color/floating_action_button_icon_color"/>
Brian Attwell89ee3952014-07-09 16:40:39 -070039</FrameLayout>