blob: 734abdc8e147885e761f478151f3927d67c19a33 [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" />
23 <!-- drawable to use for a swelling, glowing background on press -->
Daniel Sandlera375c942011-07-29 00:33:53 -040024 <attr name="glowBackground" format="reference" />
Joe Onorato86f9bd22010-06-30 17:03:42 -040025 </declare-styleable>
Joe Onorato75362102010-12-02 16:46:12 -080026 <declare-styleable name="ToggleSlider">
27 <attr name="text" format="string" />
28 </declare-styleable>
Joe Onorato7c270fa2010-12-08 17:31:42 -080029 <declare-styleable name="NotificationLinearLayout">
30 <attr name="insetLeft" format="dimension" />
31 </declare-styleable>
Daniel Sandlerd42497e2011-06-04 00:32:50 -040032 <declare-styleable name="NotificationRowLayout">
33 <attr name="rowHeight" format="dimension" />
34 </declare-styleable>
Daniel Sandler4a066c52012-04-20 14:49:13 -040035 <declare-styleable name="RecentsPanelView">
36 <attr name="recentItemLayout" format="reference" />
37 </declare-styleable>
Daniel Sandlerc26185b2012-08-29 15:49:53 -040038 <declare-styleable name="DeadZone">
39 <attr name="minSize" format="dimension" />
40 <attr name="maxSize" format="dimension" />
41 <attr name="holdTime" format="integer" />
42 <attr name="decayTime" format="integer" />
43 <attr name="orientation" />
44 </declare-styleable>
John Spurlock29786fc2014-02-04 17:55:47 -050045 <declare-styleable name="BatteryMeterView">
46 <attr name="frameColor" format="color" />
47 </declare-styleable>
Daniel Sandlerc26185b2012-08-29 15:49:53 -040048 <attr name="orientation">
49 <enum name="horizontal" value="0" />
50 <enum name="vertical" value="1" />
51 </attr>
Joe Onorato86f9bd22010-06-30 17:03:42 -040052</resources>
53