1<!-- 2 ~ Copyright (C) 2024 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<com.android.launcher3.allapps.WorkUtilityView xmlns:android="http://schemas.android.com/apk/res/android" 17 android:id="@+id/work_utility_view" 18 android:layout_height="wrap_content" 19 android:layout_width="wrap_content" 20 android:orientation="vertical" 21 android:layout_alignParentBottom="true" 22 android:layout_alignParentEnd="true"> 23 <ImageButton 24 android:id="@+id/work_scheduler" 25 android:layout_width="@dimen/work_scheduler_size" 26 android:layout_height="@dimen/work_scheduler_size" 27 android:layout_marginBottom="@dimen/work_scheduler_bottom_margin" 28 android:contentDescription="@string/work_scheduler_button_content_description" 29 android:elevation="@dimen/work_fab_elevation" 30 android:src="@drawable/ic_schedule" 31 android:layout_gravity="end" 32 android:background="@drawable/work_scheduler_background" /> 33 <include layout="@layout/work_mode_fab" /> 34</com.android.launcher3.allapps.WorkUtilityView> 35