• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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<!-- This file contains resource definitions for style.  A style is
18     a collection of named values that can be applied as a group.  Here,
19     we are using a style to define a common set of XML attributes that
20     will be used in multiple tags. -->
21
22<resources>
23    <style name="ActionButton">
24        <item name="android:layout_width">wrap_content</item>
25        <item name="android:layout_height">wrap_content</item>
26        <item name="android:textAppearance">@style/TextAppearance.ActionButton</item>
27    </style>
28
29    <style name="TextAppearance" parent="android:TextAppearance">
30    </style>
31
32    <style name="TextAppearance.ActionButton">
33        <item name="android:textStyle">italic</item>
34    </style>
35
36</resources>
37
38