mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-19 07:25:05 -05:00
45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
|
<!--
|
||
|
Copyright 2011 The Android Open Source Project
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<resources>
|
||
|
|
||
|
<declare-styleable name="SlidingMenu">
|
||
|
<attr name="mode">
|
||
|
<enum name="left" value="0" />
|
||
|
<enum name="right" value="1" />
|
||
|
</attr>
|
||
|
<attr name="viewAbove" format="reference" />
|
||
|
<attr name="viewBehind" format="reference" />
|
||
|
<attr name="behindOffset" format="dimension" />
|
||
|
<attr name="behindWidth" format="dimension" />
|
||
|
<attr name="behindScrollScale" format="float" />
|
||
|
<attr name="touchModeAbove">
|
||
|
<enum name="margin" value="0" />
|
||
|
<enum name="fullscreen" value="1" />
|
||
|
</attr>
|
||
|
<attr name="touchModeBehind">
|
||
|
<enum name="margin" value="0" />
|
||
|
<enum name="fullscreen" value="1" />
|
||
|
</attr>
|
||
|
<attr name="shadowDrawable" format="reference" />
|
||
|
<attr name="shadowWidth" format="dimension" />
|
||
|
<attr name="fadeEnabled" format="boolean" />
|
||
|
<attr name="fadeDegree" format="float" />
|
||
|
<attr name="selectorEnabled" format="boolean" />
|
||
|
<attr name="selectorDrawable" format="reference" />
|
||
|
</declare-styleable>
|
||
|
|
||
|
</resources>
|