blob: a20d6579215efc394ef535e49926f6fbbe0b8a10 [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"
Marcus Hagerott97020632016-09-28 11:17:22 -070020 xmlns:app="http://schemas.android.com/apk/res-auto"
Brian Attwell89ee3952014-07-09 16:40:39 -070021 android:id="@+id/floating_action_button_container"
22 android:layout_width="@dimen/floating_action_button_width"
23 android:layout_height="@dimen/floating_action_button_height"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070024 android:layout_alignParentBottom="true"
Brian Attwell89ee3952014-07-09 16:40:39 -070025 android:layout_alignParentEnd="true"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070026 android:layout_gravity="bottom|end"
27 android:layout_marginBottom="@dimen/floating_action_button_margin_bottom"
28 android:layout_marginEnd="@dimen/floating_action_button_margin_right"
yaolu14235e62016-10-21 16:09:42 -070029 android:background="@drawable/fab_pink"
Marcus Hagerott97020632016-09-28 11:17:22 -070030 android:elevation="@dimen/design_fab_elevation"
31 app:layout_dodgeInsetEdges="bottom" >
Brian Attwell89ee3952014-07-09 16:40:39 -070032
33 <ImageButton
34 android:id="@+id/floating_action_button"
35 android:layout_width="match_parent"
36 android:layout_height="match_parent"
37 android:background="@drawable/floating_action_button"
Brian Attwell89ee3952014-07-09 16:40:39 -070038 android:contentDescription="@string/action_menu_add_new_contact_button"
Marcus Hagerott8d62cd22016-08-01 17:31:38 -070039 android:src="@drawable/ic_add"
40 android:tint="@color/floating_action_button_icon_color"/>
Brian Attwell89ee3952014-07-09 16:40:39 -070041</FrameLayout>