| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. --> |
| |
| <FrameLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:tools="http://schemas.android.com/tools" |
| tools:ignore="MergeRootFrame" |
| android:layout_width="@android:dimen/notification_large_icon_width" |
| android:layout_height="@android:dimen/notification_large_icon_height" |
| android:layout_alignParentStart="true"> |
| |
| <ImageView |
| android:id="@+id/icon" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:scaleType="centerInside" |
| tools:ignore="ContentDescription" |
| style="@style/WebNotificationLargeIcon"/> |
| |
| <ViewStub |
| android:id="@+id/small_icon_overlay" |
| android:inflatedId="@id/small_icon_overlay" |
| android:layout="@layout/web_notification_small_icon" |
| android:layout_width="16dp" |
| android:layout_height="16dp" |
| android:layout_marginEnd="8dp" |
| android:layout_marginBottom="8dp" |
| android:layout_gravity="bottom|end"/> |
| |
| </FrameLayout> |