blob: 189eb3be302ac64c007729e80ff0527f21e31f21 [file] [log] [blame]
Joe Onorato86f9bd22010-06-30 17:03:42 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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 <declare-styleable name="KeyButtonView">
Daniel Sandler44a46162011-08-09 16:48:21 -040019 <!-- key code to send when pressed; if absent or 0, no key is sent -->
Joe Onorato86f9bd22010-06-30 17:03:42 -040020 <attr name="keyCode" format="integer" />
Daniel Sandler44a46162011-08-09 16:48:21 -040021 <!-- does this button generate longpress / repeat events? -->
22 <attr name="keyRepeat" format="boolean" />
Adrian Roos3bab5152015-10-16 16:51:04 -070023 <attr name="android:contentDescription" />
Joe Onorato86f9bd22010-06-30 17:03:42 -040024 </declare-styleable>
Joe Onorato75362102010-12-02 16:46:12 -080025 <declare-styleable name="ToggleSlider">
26 <attr name="text" format="string" />
27 </declare-styleable>
Joe Onorato7c270fa2010-12-08 17:31:42 -080028 <declare-styleable name="NotificationLinearLayout">
29 <attr name="insetLeft" format="dimension" />
30 </declare-styleable>
Daniel Sandler4a066c52012-04-20 14:49:13 -040031 <declare-styleable name="RecentsPanelView">
32 <attr name="recentItemLayout" format="reference" />
33 </declare-styleable>
Daniel Sandlerc26185b2012-08-29 15:49:53 -040034 <declare-styleable name="DeadZone">
35 <attr name="minSize" format="dimension" />
36 <attr name="maxSize" format="dimension" />
37 <attr name="holdTime" format="integer" />
38 <attr name="decayTime" format="integer" />
39 <attr name="orientation" />
40 </declare-styleable>
John Spurlock29786fc2014-02-04 17:55:47 -050041 <declare-styleable name="BatteryMeterView">
42 <attr name="frameColor" format="color" />
43 </declare-styleable>
Jorim Jaggi740beb52014-05-11 18:53:19 +020044 <declare-styleable name="Clock">
45 <attr name="amPmStyle" format="enum">
46 <enum name="normal" value="0" />
47 <enum name="small" value="1" />
48 <enum name="gone" value="2" />
49 </attr>
50 </declare-styleable>
Daniel Sandlerc26185b2012-08-29 15:49:53 -040051 <attr name="orientation">
52 <enum name="horizontal" value="0" />
53 <enum name="vertical" value="1" />
54 </attr>
Adrian Roos8ddb2da2014-06-16 18:56:22 -070055 <declare-styleable name="UserAvatarView">
56 <attr name="frameWidth" format="dimension" />
Adrian Roosccdff622014-08-06 00:07:18 +020057 <attr name="framePadding" format="dimension" />
Adrian Roos8ddb2da2014-06-16 18:56:22 -070058 <attr name="activeFrameColor" format="color" />
59 <attr name="frameColor" />
60 </declare-styleable>
Adrian Roosccdff622014-08-06 00:07:18 +020061 <declare-styleable name="UserDetailItemView">
62 <attr name="regularFontFamily" format="string" />
63 <attr name="activatedFontFamily" format="string" />
64 </declare-styleable>
Jorim Jaggi3f48f462014-07-08 16:53:29 +020065 <declare-styleable name="DateView">
66 <attr name="datePattern" format="string" />
67 </declare-styleable>
Adrian Roos19408922014-08-07 20:54:12 +020068 <declare-styleable name="PseudoGridView">
69 <attr name="numColumns" format="integer" />
70 <attr name="verticalSpacing" format="dimension" />
71 <attr name="horizontalSpacing" format="dimension" />
72 </declare-styleable>
Jorim Jaggi5443cc52015-03-20 14:39:24 -070073
74 <!-- Theme for icons in the status bar (light/dark). background/fillColor is used for dual tone
75 icons like wifi and signal, and singleToneColor is used for icons with only one tone.
76 Contract: Pixel with fillColor blended over backgroundColor blended over translucent should
77 equal to singleToneColor blended over translucent. -->
78 <declare-styleable name="TonedIcon">
79 <attr name="backgroundColor" format="integer" />
80 <attr name="fillColor" format="integer" />
81 <attr name="singleToneColor" format="integer" />
82 </declare-styleable>
Adrian Roos2f2bd9a2015-06-04 18:11:14 -070083
84 <declare-styleable name="StatusBarWindowView_Layout">
85 <attr name="ignoreRightInset" format="boolean" />
86 </declare-styleable>
Andrew Flynn0f27a3f2015-06-10 14:12:23 -040087
88 <declare-styleable name="AlphaOptimizedImageView">
89 <attr name="hasOverlappingRendering" format="boolean" />
90 </declare-styleable>
Jason Monkcaf37622015-08-18 12:33:50 -040091
92 <declare-styleable name="TunerSwitch">
93 <attr name="defValue" format="boolean" />
Jason Monk5732df42016-02-24 16:24:55 -050094 <attr name="metricsAction" format="integer" />
Jason Monkcaf37622015-08-18 12:33:50 -040095 </declare-styleable>
Joe Onorato86f9bd22010-06-30 17:03:42 -040096</resources>
97