Home | History | Annotate | Download | only in drawable
      1 <!--
      2 Copyright (C) 2018 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 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
     17 
     18     <item>
     19         <shape android:shape="oval">
     20             <solid
     21                 android:color="?android:attr/colorAccent" />
     22             <size
     23                 android:width="@dimen/dashboard_tile_image_size"
     24                 android:height="@dimen/dashboard_tile_image_size" />
     25         </shape>
     26     </item>
     27 
     28     <item
     29         android:width="@dimen/dashboard_tile_foreground_image_size"
     30         android:height="@dimen/dashboard_tile_foreground_image_size"
     31         android:start="@dimen/dashboard_tile_foreground_image_inset"
     32         android:top="@dimen/dashboard_tile_foreground_image_inset"
     33         android:drawable="@drawable/ic_event_white" />
     34 </layer-list>
     35