| <?xml version="1.0" encoding="utf-8"?><!-- |
| Copyright (C) 2024 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <!-- Content description is set programmatically on the parent FrameLayout --> |
| <FrameLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="80dp" |
| android:layout_height="80dp" |
| android:clipToPadding="false" |
| android:clipChildren="false"> |
| |
| <com.android.wallpaper.picker.option.ui.view.OptionItemBackground |
| android:id="@id/background" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:importantForAccessibility="no" /> |
| |
| <ImageView |
| android:id="@+id/foreground" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:layout_margin="@dimen/floating_sheet_clock_style_thumbnail_margin" |
| android:src="@drawable/ic_clock_24px" /> |
| |
| <ImageView |
| android:id="@+id/edit_icon" |
| android:layout_width="@dimen/floating_sheet_clock_edit_icon_size" |
| android:layout_height="@dimen/floating_sheet_clock_edit_icon_size" |
| android:layout_marginTop="-16dp" |
| android:layout_marginStart="50dp" |
| android:src="@drawable/edit_icon" |
| android:importantForAccessibility="no" /> |
| </FrameLayout> |
| |