1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2006 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 17<!-- Formatting note: terminate all comments with a period, to avoid breaking 18 the documentation output. To suppress comment lines from the documentation 19 output, insert an eat-comment element after the comment lines. 20--> 21 22<resources> 23 <declare-styleable name="ResolverDrawerLayout"> 24 <attr name="android:maxWidth" /> 25 <attr name="maxCollapsedHeight" format="dimension" /> 26 <attr name="maxCollapsedHeightSmall" format="dimension" /> 27 <!-- Whether the Drawer should be positioned at the top rather than at the bottom. --> 28 <attr name="showAtTop" format="boolean" /> 29 <!-- By default `ResolverDrawerLayout`’s children views with `layout_ignoreOffset` property 30 set to true have a fixed position in the layout that won’t be affected by the drawer’s 31 movements. This property alternates that behavior. It specifies a child view’s id that 32 will push all ignoreOffset siblings below it when the drawer is moved i.e. setting the 33 top limit the ignoreOffset elements. --> 34 <attr name="ignoreOffsetTopLimit" format="reference" /> 35 <!-- Specifies whether ResolverDrawerLayout should use an alternative nested fling logic 36 adjusted for the scrollable preview feature. 37 Controlled by the flag com.android.intentresolver.Flags#FLAG_SCROLLABLE_PREVIEW. 38 --> 39 <attr name="useScrollablePreviewNestedFlingLogic" format="boolean" /> 40 </declare-styleable> 41 42 <declare-styleable name="ResolverDrawerLayout_LayoutParams"> 43 <attr name="layout_alwaysShow" format="boolean" /> 44 <attr name="layout_ignoreOffset" format="boolean" /> 45 <attr name="android:layout_gravity" /> 46 <attr name="layout_hasNestedScrollIndicator" format="boolean" /> 47 <attr name="layout_maxHeight" format="dimension"/> 48 </declare-styleable> 49 50 <declare-styleable name="RoundedRectImageView"> 51 <attr name="radius" format="dimension" /> 52 </declare-styleable> 53 54 <declare-styleable name="ScrollableImagePreviewView"> 55 <attr name="itemInnerSpacing" format="dimension" /> 56 <attr name="itemOuterSpacing" format="dimension" /> 57 <attr name="maxWidthHint" format="dimension" /> 58 <attr name="editButtonRoleDescription" format="string" /> 59 </declare-styleable> 60 61 <declare-styleable name="ChooserTargetItemView"> 62 <attr name="focusOutlineColor" format="color" /> 63 <attr name="focusInnerOutlineColor" format="color" /> 64 <attr name="focusOutlineWidth" format="dimension" /> 65 <attr name="focusOutlineCornerRadius" format="dimension" /> 66 </declare-styleable> 67</resources> 68