Home | History | Annotate | Download | only in values
      1 <!--
      2   Copyright (C) 2011 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 <resources>
     18 
     19     <declare-styleable name="AppTheme">
     20         <attr name="actionbarCompatTitleStyle" format="reference" />
     21         <attr name="actionbarCompatButtonStyle" format="reference" />
     22         <attr name="actionbarCompatButtonHomeStyle" format="reference" />
     23         <attr name="actionbarCompatProgressIndicatorStyle" format="reference" />
     24     </declare-styleable>
     25 
     26     <!-- Mostly taken from frameworks/base.git/core/res/res/values/attrs.xml -->
     27     <declare-styleable name="TextAppearance">
     28         <attr name="textColor" format="color" />
     29         <attr name="textSize" format="dimension" />
     30 
     31         <attr name="textStyle">
     32             <flag name="normal" value="0" />
     33             <flag name="bold" value="1" />
     34             <flag name="italic" value="2" />
     35         </attr>
     36 
     37         <attr name="typeface">
     38             <enum name="normal" value="0" />
     39             <enum name="sans" value="1" />
     40             <enum name="serif" value="2" />
     41             <enum name="monospace" value="3" />
     42         </attr>
     43 
     44         <attr name="shadowRadius" format="float" />
     45         <attr name="shadowDx" format="float" />
     46         <attr name="shadowDy" format="float" />
     47         <attr name="shadowColor" format="color" />
     48     </declare-styleable>
     49 
     50 </resources>
     51