blob: 86c46fc54bf667b6f6c193cb7a6ad640a3f907af [file] [log] [blame]
Jeff Sharkey3f177592009-05-18 15:23:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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
Daniel Lehmann2e95ad02011-07-28 18:30:01 -07007
Jeff Sharkey3f177592009-05-18 15:23:12 -07008 http://www.apache.org/licenses/LICENSE-2.0
Daniel Lehmann2e95ad02011-07-28 18:30:01 -07009
Jeff Sharkey3f177592009-05-18 15:23:12 -070010 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-->
Jeff Sharkey3f177592009-05-18 15:23:12 -070016<resources>
17 <!-- Maps a contact kind or mime-type to a RemoteViews XML formatter -->
18 <declare-styleable name="Mapping">
19 <!-- Mime-type handled by this mapping -->
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080020 <attr name="mimeType" format="string"/>
Jeff Sharkey3f177592009-05-18 15:23:12 -070021 <!-- RemoteViews XML that should be used to format this data -->
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080022 <attr name="remoteViews" format="reference"/>
Jeff Sharkey549aa162009-05-21 01:33:30 -070023 <!-- Column in data table to summarize this data -->
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080024 <attr name="summaryColumn" format="string"/>
Jeff Sharkey39261272009-06-03 19:15:09 -070025 <!-- Column in data table to show details of this data -->
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080026 <attr name="detailColumn" format="string"/>
Jeff Sharkey3f177592009-05-18 15:23:12 -070027 </declare-styleable>
28
29 <declare-styleable name="EdgeTriggerView">
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080030 <attr name="edgeWidth" format="dimension"/>
Jeff Sharkey3f177592009-05-18 15:23:12 -070031 <attr name="listenEdges">
Dmitri Plotnikovfc172b02010-02-23 10:10:17 -080032 <flag name="left" value="0x01"/>
33 <flag name="right" value="0x02"/>
Jeff Sharkey3f177592009-05-18 15:23:12 -070034 </attr>
35 </declare-styleable>
36
Daniel Lehmann2e95ad02011-07-28 18:30:01 -070037 <declare-styleable name="InterpolatingLayout_Layout">
38 <attr name="layout_narrowParentWidth" format="dimension"/>
39 <attr name="layout_narrowWidth" format="dimension"/>
40 <attr name="layout_narrowMarginLeft" format="dimension"/>
41 <attr name="layout_narrowMarginRight" format="dimension"/>
42 <attr name="layout_narrowPaddingLeft" format="dimension"/>
43 <attr name="layout_narrowPaddingRight" format="dimension"/>
44 <attr name="layout_wideParentWidth" format="dimension"/>
45 <attr name="layout_wideWidth" format="dimension"/>
46 <attr name="layout_wideMarginLeft" format="dimension"/>
47 <attr name="layout_wideMarginRight" format="dimension"/>
48 <attr name="layout_widePaddingLeft" format="dimension"/>
49 <attr name="layout_widePaddingRight" format="dimension"/>
50 </declare-styleable>
51
Jeff Sharkey3f177592009-05-18 15:23:12 -070052</resources>