1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright 2022 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17 18<resources> 19 20 <declare-styleable name="ThemeAdapterTextAppearance"> 21 <attr name="android:textColor" /> 22 <attr name="android:textSize" /> 23 <attr name="android:textStyle" /> 24 <attr name="android:textFontWeight" /> 25 <attr name="android:typeface" /> 26 <attr name="android:shadowColor" /> 27 <attr name="android:shadowDx" /> 28 <attr name="android:shadowDy" /> 29 <attr name="android:shadowRadius" /> 30 <attr name="lineHeight" /> 31 <attr name="android:lineHeight" /> 32 <attr name="android:letterSpacing" /> 33 <attr name="android:fontFeatureSettings" /> 34 <attr name="android:fontFamily" /> 35 <attr name="fontFamily" /> 36 <!-- TODOs below --> 37 <attr name="android:fontVariationSettings" /> 38 </declare-styleable> 39 40 <declare-styleable name="ThemeAdapterShapeAppearance"> 41 <attr name="cornerSize" /> 42 <attr name="cornerSizeTopLeft" /> 43 <attr name="cornerSizeTopRight" /> 44 <attr name="cornerSizeBottomRight" /> 45 <attr name="cornerSizeBottomLeft" /> 46 <attr name="cornerFamily" /> 47 </declare-styleable> 48 49</resources> 50