mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Add SimonVT's android-menudrawer. This will be used in the menu interface for Dolphin Android.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
|
||||
!.gitignore
|
||||
!.travis.yml
|
||||
!CHANGELOG.md
|
||||
!README.md
|
||||
!LICENSE
|
||||
!checkstyle.xml
|
||||
!pom.xml
|
||||
|
||||
!art/
|
||||
|
||||
!library/
|
||||
library/*
|
||||
!library/src/
|
||||
!library/res/
|
||||
!library/AndroidManifest.xml
|
||||
!library/build.xml
|
||||
!library/pom.xml
|
||||
!library/project.properties
|
||||
|
||||
!samples/
|
||||
samples/*
|
||||
!samples/src/
|
||||
!samples/res/
|
||||
!samples/libs/
|
||||
!samples/AndroidManifest.xml
|
||||
!samples/build.xml
|
||||
!samples/pom.xml
|
||||
!samples/project.properties
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
language: java
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
|
||||
before_install:
|
||||
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
|
||||
- tar -zxf android-sdk_r21.0.1-linux.tgz
|
||||
- export ANDROID_HOME=~/builds/SimonVT/android-menudrawer/android-sdk-linux
|
||||
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
|
||||
- TOOLS=$(android list sdk --no-ui | grep "Android SDK Platform-tools" | cut -d"-" -f1)
|
||||
- android update sdk --filter "$TOOLS" --no-ui --force
|
||||
- SDK=$(android list sdk --no-ui | grep ", API 16," | cut -d"-" -f1)
|
||||
- android update sdk --filter "$SDK" --no-ui --force
|
||||
|
||||
install:
|
||||
- "mvn package --quiet -DskipTests"
|
||||
- "mvn verify"
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
Version 2.0.2 *(2013-03-31)*
|
||||
----------------------------
|
||||
* Added listener that makes it possible to disabllow intercepting touch events over
|
||||
certain views
|
||||
* Added setter for the maximum animation duration
|
||||
* Added getter for menu size
|
||||
* Added methods that enable/disable indicator animation
|
||||
* Fix: Removed log statements
|
||||
* Fix: Drawing the active indicator might cause crash if the active view is not a
|
||||
child of the MenuDrawer
|
||||
* Fix: Crash in static drawer if no active indicator bitmap was set
|
||||
|
||||
Version 2.0.1 *(2013-02-12)*
|
||||
----------------------------
|
||||
* Indicator now animates between active views
|
||||
* Fixed restoring state for right/bottom drawer
|
||||
|
||||
Version 2.0.0 *(2013-01-23)*
|
||||
----------------------------
|
||||
|
||||
* Major API changes
|
||||
|
||||
* All classes are now in the net.simonvt.menudrawer package.
|
||||
* MenuDrawerManager no longet exists. Menu is added with MenuDrawer#attach(...).
|
||||
* Drawer position is now selected with Position enums instead of int constants.
|
||||
* Width methods/attributes have been renamed to 'size'.
|
||||
|
||||
* Added top/bottom drawer.
|
||||
* Added static (non-draggable, always visible) drawers.
|
||||
* The touch bezel size is now configurable with MenuDrawer#setTouchBezelSize(int).
|
||||
* MenuDrawer#saveState() now only required when dragging the entire window.
|
||||
* Drawers can now be used in XML layouts.
|
||||
* Fix: Scroller class caused conflicts with other libraries.
|
||||
* Fix: No more overdraw when the drawer is closed.
|
||||
* Fix: Content no longer falls behind when slowly dragging.
|
||||
|
||||
|
||||
Version 1.0.0 *(2012-10-30)*
|
||||
----------------------------
|
||||
|
||||
Initial release.
|
||||
Vendored
+202
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
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.
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
MenuDrawer
|
||||
==========
|
||||
|
||||
A slide-out menu implementation, which allows users to navigate between views
|
||||
in your app. Most commonly the menu is revealed by either dragging the edge
|
||||
of the screen, or clicking the 'up' button in the action bar.
|
||||
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
* The menu can be positioned along all four edges.
|
||||
* Supports attaching an always visible, non-draggable menu, which is useful
|
||||
on e.g. tablets.
|
||||
* The menu can wrap both the content and the entire window.
|
||||
* Allows the drawer to be opened by dragging the edge, the entire screen or
|
||||
not at all.
|
||||
* Can be used in XML layouts.
|
||||
* Indicator that shows which screen is currently visible.
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
This library is very simple to use. It requires no extension of custom classes,
|
||||
it's simply added to an activity by calling one of the `MenuDrawer#attach(...)`
|
||||
methods.
|
||||
|
||||
For more examples on how to use this library, check out the sample app.
|
||||
|
||||
|
||||
Left menu
|
||||
---------
|
||||
```java
|
||||
public class SampleActivity extends Activity {
|
||||
|
||||
private MenuDrawer mDrawer;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle state) {
|
||||
super.onCreate(state);
|
||||
mDrawer = MenuDrawer.attach(this);
|
||||
mDrawer.setContentView(R.layout.activity_sample);
|
||||
mDrawer.setMenuView(R.layout.menu_sample);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Right menu
|
||||
----------
|
||||
```java
|
||||
public class SampleActivity extends Activity {
|
||||
|
||||
private MenuDrawer mDrawer;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle state) {
|
||||
super.onCreate(state);
|
||||
mDrawer = MenuDrawer.attach(this, Position.RIGHT);
|
||||
mDrawer.setContentView(R.layout.activity_sample);
|
||||
mDrawer.setMenuView(R.layout.menu_sample);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
* Cyril Mottier for his [articles][1] on the pattern
|
||||
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
Copyright 2012 Simon Vig Therkildsen
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1]: http://android.cyrilmottier.com/?p=658
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="33"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.2 r9819"
|
||||
sodipodi:docname="arrow dropshadow.svg"
|
||||
inkscape:export-filename="C:\Users\SimonVT\Desktop\menu_arrow_hdpi.png"
|
||||
inkscape:export-xdpi="135"
|
||||
inkscape:export-ydpi="135">
|
||||
<defs
|
||||
id="defs4">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3800"
|
||||
x="-0.20999995"
|
||||
width="1.4199999"
|
||||
y="-0.084000008"
|
||||
height="1.168">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.0500001"
|
||||
id="feGaussianBlur3802" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="-0.29262145"
|
||||
inkscape:cy="18.116185"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="998"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1019.3622)">
|
||||
<path
|
||||
style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3800)"
|
||||
d="M 13.999507,1050.8622 2,1035.8623 13.999517,1020.8622 c 4e-6,30.0455 0.0011,-0.01 -1e-5,30 z"
|
||||
id="rect2989-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#e8e8e8;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 15.999508,1050.8622 4,1035.8623 15.999517,1020.8622 c 4e-6,30.0455 0.0011,-0.01 -9e-6,30 z"
|
||||
id="rect2989"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
+120
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module PUBLIC
|
||||
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
|
||||
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
|
||||
|
||||
<module name="Checker">
|
||||
<module name="NewlineAtEndOfFile"/>
|
||||
<module name="FileLength"/>
|
||||
<module name="FileTabCharacter"/>
|
||||
|
||||
<!-- Trailing spaces -->
|
||||
<module name="RegexpSingleline">
|
||||
<property name="format" value="\s+$"/>
|
||||
<property name="message" value="Line has trailing spaces."/>
|
||||
</module>
|
||||
|
||||
<module name="TreeWalker">
|
||||
<property name="cacheFile" value="${checkstyle.cache.file}"/>
|
||||
|
||||
<!-- Checks for Javadoc comments. -->
|
||||
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||
<!--module name="JavadocMethod"/-->
|
||||
<!--module name="JavadocType"/-->
|
||||
<!--module name="JavadocVariable"/-->
|
||||
<module name="JavadocStyle"/>
|
||||
|
||||
|
||||
<!-- Checks for Naming Conventions. -->
|
||||
<!-- See http://checkstyle.sf.net/config_naming.html -->
|
||||
<module name="ConstantName"/>
|
||||
<module name="LocalFinalVariableName"/>
|
||||
<module name="LocalVariableName"/>
|
||||
<module name="MemberName"/>
|
||||
<module name="MethodName"/>
|
||||
<module name="PackageName"/>
|
||||
<module name="ParameterName"/>
|
||||
<module name="StaticVariableName"/>
|
||||
<module name="TypeName"/>
|
||||
|
||||
|
||||
<!-- Checks for imports -->
|
||||
<!-- See http://checkstyle.sf.net/config_import.html -->
|
||||
<module name="AvoidStarImport"/>
|
||||
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
|
||||
<module name="RedundantImport"/>
|
||||
<module name="UnusedImports"/>
|
||||
|
||||
|
||||
<!-- Checks for Size Violations. -->
|
||||
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
||||
<module name="LineLength">
|
||||
<property name="max" value="120"/>
|
||||
</module>
|
||||
<module name="MethodLength"/>
|
||||
<!--module name="ParameterNumber"/-->
|
||||
|
||||
|
||||
<!-- Checks for whitespace -->
|
||||
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
||||
<module name="GenericWhitespace"/>
|
||||
<module name="EmptyForIteratorPad"/>
|
||||
<module name="MethodParamPad"/>
|
||||
<module name="NoWhitespaceAfter"/>
|
||||
<module name="NoWhitespaceBefore"/>
|
||||
<module name="OperatorWrap"/>
|
||||
<module name="ParenPad"/>
|
||||
<module name="TypecastParenPad"/>
|
||||
<module name="WhitespaceAfter"/>
|
||||
<module name="WhitespaceAround"/>
|
||||
|
||||
|
||||
<!-- Modifier Checks -->
|
||||
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
|
||||
<module name="ModifierOrder"/>
|
||||
<module name="RedundantModifier"/>
|
||||
|
||||
|
||||
<!-- Checks for blocks. You know, those {}'s -->
|
||||
<!-- See http://checkstyle.sf.net/config_blocks.html -->
|
||||
<!--module name="AvoidNestedBlocks"/-->
|
||||
<!--module name="EmptyBlock"/-->
|
||||
<module name="LeftCurly"/>
|
||||
<!--module name="NeedBraces"/-->
|
||||
<module name="RightCurly"/>
|
||||
|
||||
|
||||
<!-- Checks for common coding problems -->
|
||||
<!-- See http://checkstyle.sf.net/config_coding.html -->
|
||||
<!--module name="AvoidInlineConditionals"/-->
|
||||
<module name="CovariantEquals"/>
|
||||
<!--module name="DoubleCheckedLocking"/-->
|
||||
<module name="EmptyStatement"/>
|
||||
<module name="EqualsAvoidNull"/>
|
||||
<module name="EqualsHashCode"/>
|
||||
<!--module name="HiddenField"/-->
|
||||
<module name="IllegalInstantiation"/>
|
||||
<!--module name="InnerAssignment"/-->
|
||||
<!--module name="MagicNumber"/-->
|
||||
<!--module name="MissingSwitchDefault"/-->
|
||||
<module name="RedundantThrows"/>
|
||||
<module name="SimplifyBooleanExpression"/>
|
||||
<module name="SimplifyBooleanReturn"/>
|
||||
|
||||
<!-- Checks for class design -->
|
||||
<!-- See http://checkstyle.sf.net/config_design.html -->
|
||||
<!--module name="DesignForExtension"/-->
|
||||
<module name="FinalClass"/>
|
||||
<module name="HideUtilityClassConstructor"/>
|
||||
<module name="InterfaceIsType"/>
|
||||
<!--module name="VisibilityModifier"/-->
|
||||
|
||||
|
||||
<!-- Miscellaneous other checks. -->
|
||||
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
||||
<module name="ArrayTypeStyle"/>
|
||||
<!--module name="FinalParameters"/-->
|
||||
<module name="TodoComment"/>
|
||||
<module name="UpperEll"/>
|
||||
</module>
|
||||
</module>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="net.simonvt.menudrawer"
|
||||
android:versionCode="3"
|
||||
android:versionName="2.0.1">
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16" />
|
||||
</manifest>
|
||||
+92
@@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="menudrawer" default="help">
|
||||
|
||||
<!-- The local.properties file is created and updated by the 'android' tool.
|
||||
It contains the path to the SDK. It should *NOT* be checked into
|
||||
Version Control Systems. -->
|
||||
<property file="local.properties" />
|
||||
|
||||
<!-- The ant.properties file can be created by you. It is only edited by the
|
||||
'android' tool to add properties to it.
|
||||
This is the place to change some Ant specific build properties.
|
||||
Here are some properties you may want to change/update:
|
||||
|
||||
source.dir
|
||||
The name of the source directory. Default is 'src'.
|
||||
out.dir
|
||||
The name of the output directory. Default is 'bin'.
|
||||
|
||||
For other overridable properties, look at the beginning of the rules
|
||||
files in the SDK, at tools/ant/build.xml
|
||||
|
||||
Properties related to the SDK location or the project target should
|
||||
be updated using the 'android' tool with the 'update' action.
|
||||
|
||||
This file is an integral part of the build system for your
|
||||
application and should be checked into Version Control Systems.
|
||||
|
||||
-->
|
||||
<property file="ant.properties" />
|
||||
|
||||
<!-- if sdk.dir was not set from one of the property file, then
|
||||
get it from the ANDROID_HOME env var.
|
||||
This must be done before we load project.properties since
|
||||
the proguard config can use sdk.dir -->
|
||||
<property environment="env" />
|
||||
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
|
||||
<isset property="env.ANDROID_HOME" />
|
||||
</condition>
|
||||
|
||||
<!-- The project.properties file is created and updated by the 'android'
|
||||
tool, as well as ADT.
|
||||
|
||||
This contains project specific properties such as project target, and library
|
||||
dependencies. Lower level build properties are stored in ant.properties
|
||||
(or in .classpath for Eclipse projects).
|
||||
|
||||
This file is an integral part of the build system for your
|
||||
application and should be checked into Version Control Systems. -->
|
||||
<loadproperties srcFile="project.properties" />
|
||||
|
||||
<!-- quick check on sdk.dir -->
|
||||
<fail
|
||||
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
|
||||
unless="sdk.dir"
|
||||
/>
|
||||
|
||||
<!--
|
||||
Import per project custom build rules if present at the root of the project.
|
||||
This is the place to put custom intermediary targets such as:
|
||||
-pre-build
|
||||
-pre-compile
|
||||
-post-compile (This is typically used for code obfuscation.
|
||||
Compiled code location: ${out.classes.absolute.dir}
|
||||
If this is not done in place, override ${out.dex.input.absolute.dir})
|
||||
-post-package
|
||||
-post-build
|
||||
-pre-clean
|
||||
-->
|
||||
<import file="custom_rules.xml" optional="true" />
|
||||
|
||||
<!-- Import the actual build file.
|
||||
|
||||
To customize existing targets, there are two options:
|
||||
- Customize only one target:
|
||||
- copy/paste the target into this file, *before* the
|
||||
<import> task.
|
||||
- customize it to your needs.
|
||||
- Customize the whole content of build.xml
|
||||
- copy/paste the content of the rules files (minus the top node)
|
||||
into this file, replacing the <import> task.
|
||||
- customize to your needs.
|
||||
|
||||
***********************
|
||||
****** IMPORTANT ******
|
||||
***********************
|
||||
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
|
||||
in order to avoid having your file be overridden by tools such as "android update project"
|
||||
-->
|
||||
<!-- version-tag: 1 -->
|
||||
<import file="${sdk.dir}/tools/ant/build.xml" />
|
||||
|
||||
</project>
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>net.simonvt</groupId>
|
||||
<artifactId>android-menudrawer-parent</artifactId>
|
||||
<version>2.0.3-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>android-menudrawer</artifactId>
|
||||
<name>Android MenuDrawer</name>
|
||||
<packaging>apklib</packaging>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.android</groupId>
|
||||
<artifactId>android</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
||||
<artifactId>android-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1,16 @@
|
||||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system edit
|
||||
# "ant.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
#
|
||||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
android.library=true
|
||||
# Project target.
|
||||
target=android-17
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
<resources>
|
||||
|
||||
<!-- Reference to a style for the menu drawer. -->
|
||||
<attr name="menuDrawerStyle" format="reference" />
|
||||
|
||||
<!-- Styleables used for styling the menu drawer. -->
|
||||
<declare-styleable name="MenuDrawer">
|
||||
|
||||
<!-- Drawable to use for the background of the content. -->
|
||||
<attr name="mdContentBackground" format="reference" />
|
||||
|
||||
<!-- Drawable to use for the background of the menu. -->
|
||||
<attr name="mdMenuBackground" format="reference" />
|
||||
|
||||
<!-- The size of the menu. -->
|
||||
<attr name="mdMenuSize" format="dimension" />
|
||||
|
||||
<!-- Drawable used as indicator for the active view. -->
|
||||
<attr name="mdActiveIndicator" format="reference" />
|
||||
|
||||
<!-- Defines whether the content will have a dropshadow onto the menu. Default is true. -->
|
||||
<attr name="mdDropShadowEnabled" format="boolean" />
|
||||
|
||||
<!-- The size of the drop shadow. Default is 6dp -->
|
||||
<attr name="mdDropShadowSize" format="dimension" />
|
||||
|
||||
<!-- The color of the drop shadow. Default is #FF000000. -->
|
||||
<attr name="mdDropShadowColor" format="color" />
|
||||
|
||||
<!-- Drawable used for the drop shadow. -->
|
||||
<attr name="mdDropShadow" format="reference" />
|
||||
|
||||
<!-- The touch bezel size. -->
|
||||
<attr name="mdTouchBezelSize" format="dimension" />
|
||||
|
||||
<!-- Whether the indicator should be animated between active views. -->
|
||||
<attr name="mdAllowIndicatorAnimation" format="boolean" />
|
||||
|
||||
<!-- The maximum animation duration -->
|
||||
<attr name="mdMaxAnimationDuration" format="integer" />
|
||||
</declare-styleable>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,6 @@
|
||||
<resources>
|
||||
|
||||
<!-- The default background of the menu. -->
|
||||
<color name="md__defaultBackground">#FF555555</color>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,20 @@
|
||||
<resources>
|
||||
|
||||
<!-- ID used when defining the content layout in XML. -->
|
||||
<item name="mdContent" type="id" />
|
||||
|
||||
<!-- ID used when defining the menu layout in XML. -->
|
||||
<item name="mdMenu" type="id" />
|
||||
|
||||
<!-- The ID of the content container. -->
|
||||
<item name="md__content" type="id" />
|
||||
|
||||
<!-- The ID of the menu container. -->
|
||||
<item name="md__menu" type="id" />
|
||||
|
||||
<!-- The ID of the drawer. -->
|
||||
<item name="md__drawer" type="id" />
|
||||
|
||||
<!-- Used with View#setTag(int) to specify a position for the active view. -->
|
||||
<item name="mdActiveViewPosition" type="id" />
|
||||
</resources>
|
||||
@@ -0,0 +1,11 @@
|
||||
<resources>
|
||||
|
||||
<style name="Widget" />
|
||||
|
||||
<!-- Base theme for the menu drawer. -->
|
||||
<style name="Widget.MenuDrawer">
|
||||
<item name="mdMenuBackground">@color/md__defaultBackground</item>
|
||||
<item name="mdContentBackground">?android:attr/windowBackground</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
+226
@@ -0,0 +1,226 @@
|
||||
package net.simonvt.menudrawer;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.drawable.GradientDrawable;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.MotionEvent;
|
||||
|
||||
public class BottomDrawer extends VerticalDrawer {
|
||||
|
||||
private int mIndicatorLeft;
|
||||
|
||||
BottomDrawer(Activity activity, int dragMode) {
|
||||
super(activity, dragMode);
|
||||
}
|
||||
|
||||
public BottomDrawer(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
public BottomDrawer(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
}
|
||||
|
||||
public BottomDrawer(Context context, AttributeSet attrs, int defStyle) {
|
||||
super(context, attrs, defStyle);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void openMenu(boolean animate) {
|
||||
animateOffsetTo(-mMenuSize, 0, animate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void closeMenu(boolean animate) {
|
||||
animateOffsetTo(0, 0, animate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDropShadowColor(int color) {
|
||||
final int endColor = color & 0x00FFFFFF;
|
||||
mDropShadowDrawable = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM,
|
||||
new int[] {
|
||||
color,
|
||||
endColor,
|
||||
});
|
||||
invalidate();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onLayout(boolean changed, int l, int t, int r, int b) {
|
||||
final int width = r - l;
|
||||
final int height = b - t;
|
||||
final int offsetPixels = (int) mOffsetPixels;
|
||||
final int menuSize = mMenuSize;
|
||||
|
||||
mMenuContainer.layout(0, height - menuSize, width, height);
|
||||
offsetMenu(offsetPixels);
|
||||
|
||||
if (USE_TRANSLATIONS) {
|
||||
mContentContainer.layout(0, 0, width, height);
|
||||
} else {
|
||||
mContentContainer.layout(0, offsetPixels, width, height + offsetPixels);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Offsets the menu relative to its original position based on the position of the content.
|
||||
*
|
||||
* @param offsetPixels The number of pixels the content if offset.
|
||||
*/
|
||||
private void offsetMenu(int offsetPixels) {
|
||||
if (mOffsetMenu && mMenuSize != 0) {
|
||||
final int height = getHeight();
|
||||
final int menuSize = mMenuSize;
|
||||
final float openRatio = (menuSize + (float) offsetPixels) / menuSize;
|
||||
|
||||
if (USE_TRANSLATIONS) {
|
||||
if (offsetPixels != 0) {
|
||||
final int offset = (int) (0.25f * (openRatio * menuSize));
|
||||
mMenuContainer.setTranslationY(offset);
|
||||
} else {
|
||||
mMenuContainer.setTranslationY(height + menuSize);
|
||||
}
|
||||
|
||||
} else {
|
||||
final int oldMenuTop = mMenuContainer.getTop();
|
||||
final int offsetBy = (int) (0.25f * (openRatio * menuSize));
|
||||
final int offset = height - mMenuSize + offsetBy - oldMenuTop;
|
||||
mMenuContainer.offsetTopAndBottom(offset);
|
||||
mMenuContainer.setVisibility(offsetPixels == 0 ? INVISIBLE : VISIBLE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void drawDropShadow(Canvas canvas, int offsetPixels) {
|
||||
final int width = getWidth();
|
||||
final int height = getHeight();
|
||||
|
||||
mDropShadowDrawable.setBounds(0, height + offsetPixels, width, height + offsetPixels + mDropShadowSize);
|
||||
mDropShadowDrawable.draw(canvas);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void drawMenuOverlay(Canvas canvas, int offsetPixels) {
|
||||
final int width = getWidth();
|
||||
final int height = getHeight();
|
||||
final float openRatio = ((float) Math.abs(offsetPixels)) / mMenuSize;
|
||||
|
||||
mMenuOverlay.setBounds(0, height + offsetPixels, width, height);
|
||||
mMenuOverlay.setAlpha((int) (MAX_MENU_OVERLAY_ALPHA * (1.f - openRatio)));
|
||||
mMenuOverlay.draw(canvas);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void drawIndicator(Canvas canvas, int offsetPixels) {
|
||||
if (mActiveView != null && isViewDescendant(mActiveView)) {
|
||||
Integer position = (Integer) mActiveView.getTag(R.id.mdActiveViewPosition);
|
||||
final int pos = position == null ? 0 : position;
|
||||
|
||||
if (pos == mActivePosition) {
|
||||
final int height = getHeight();
|
||||
final int menuHeight = mMenuSize;
|
||||
final int indicatorHeight = mActiveIndicator.getHeight();
|
||||
|
||||
final float openRatio = ((float) Math.abs(offsetPixels)) / menuHeight;
|
||||
|
||||
mActiveView.getDrawingRect(mActiveRect);
|
||||
offsetDescendantRectToMyCoords(mActiveView, mActiveRect);
|
||||
final int indicatorWidth = mActiveIndicator.getWidth();
|
||||
|
||||
final float interpolatedRatio = 1.f - INDICATOR_INTERPOLATOR.getInterpolation((1.f - openRatio));
|
||||
final int interpolatedHeight = (int) (indicatorHeight * interpolatedRatio);
|
||||
|
||||
final int indicatorBottom = height + offsetPixels + interpolatedHeight;
|
||||
final int indicatorTop = indicatorBottom - indicatorHeight;
|
||||
if (mIndicatorAnimating) {
|
||||
final int finalLeft = mActiveRect.left + ((mActiveRect.width() - indicatorWidth) / 2);
|
||||
final int startLeft = mIndicatorStartPos;
|
||||
final int diff = finalLeft - startLeft;
|
||||
final int startOffset = (int) (diff * mIndicatorOffset);
|
||||
mIndicatorLeft = startLeft + startOffset;
|
||||
} else {
|
||||
mIndicatorLeft = mActiveRect.left + ((mActiveRect.width() - indicatorWidth) / 2);
|
||||
}
|
||||
|
||||
canvas.save();
|
||||
canvas.clipRect(mIndicatorLeft, height + offsetPixels, mIndicatorLeft + indicatorWidth,
|
||||
indicatorBottom);
|
||||
canvas.drawBitmap(mActiveIndicator, mIndicatorLeft, indicatorTop, null);
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getIndicatorStartPos() {
|
||||
return mIndicatorLeft;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void initPeekScroller() {
|
||||
final int dx = -mMenuSize / 3;
|
||||
mPeekScroller.startScroll(0, 0, dx, 0, PEEK_DURATION);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onOffsetPixelsChanged(int offsetPixels) {
|
||||
if (USE_TRANSLATIONS) {
|
||||
mContentContainer.setTranslationY(offsetPixels);
|
||||
offsetMenu(offsetPixels);
|
||||
invalidate();
|
||||
} else {
|
||||
mContentContainer.offsetTopAndBottom(offsetPixels - mContentContainer.getTop());
|
||||
offsetMenu(offsetPixels);
|
||||
invalidate();
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Touch handling
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
@Override
|
||||
protected boolean isContentTouch(MotionEvent ev) {
|
||||
return ev.getY() < getHeight() + mOffsetPixels;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean onDownAllowDrag(MotionEvent ev) {
|
||||
final int height = getHeight();
|
||||
return (!mMenuVisible && mInitialMotionY >= height - mTouchSize)
|
||||
|| (mMenuVisible && mInitialMotionY <= height + mOffsetPixels);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean onMoveAllowDrag(MotionEvent ev, float diff) {
|
||||
final int height = getHeight();
|
||||
return (!mMenuVisible && mInitialMotionY >= height - mTouchSize && (diff < 0))
|
||||
|| (mMenuVisible && mInitialMotionY <= height + mOffsetPixels);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onMoveEvent(float dx) {
|
||||
setOffsetPixels(Math.max(Math.min(mOffsetPixels + dx, 0), -mMenuSize));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onUpEvent(MotionEvent ev) {
|
||||
final int offsetPixels = (int) mOffsetPixels;
|
||||
|
||||
if (mIsDragging) {
|
||||
mVelocityTracker.computeCurrentVelocity(1000, mMaxVelocity);
|
||||
final int initialVelocity = (int) mVelocityTracker.getXVelocity();
|
||||
mLastMotionY = ev.getY();
|
||||
animateOffsetTo(mVelocityTracker.getYVelocity() < 0 ? -mMenuSize : 0, initialVelocity,
|
||||
true);
|
||||
|
||||
// Close the menu when content is clicked while the menu is visible.
|
||||
} else if (mMenuVisible && ev.getY() < getHeight() + offsetPixels) {
|
||||
closeMenu();
|
||||
}
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
package net.simonvt.menudrawer;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.drawable.GradientDrawable;
|
||||
import android.util.AttributeSet;
|
||||
|
||||
public class BottomStaticDrawer extends StaticDrawer {
|
||||
|
||||
private int mIndicatorLeft;
|
||||
|
||||
BottomStaticDrawer(Activity activity, int dragMode) {
|
||||
super(activity, dragMode);
|
||||
}
|
||||
|
||||
public BottomStaticDrawer(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
public BottomStaticDrawer(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
}
|
||||
|
||||
public BottomStaticDrawer(Context context, AttributeSet attrs, int defStyle) {
|
||||
super(context, attrs, defStyle);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void initDrawer(Context context, AttributeSet attrs, int defStyle) {
|
||||
super.initDrawer(context, attrs, defStyle);
|
||||
mPosition = Position.BOTTOM;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDropShadowColor(int color) {
|
||||
final int endColor = color & 0x00FFFFFF;
|
||||
mDropShadowDrawable = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, new int[] {
|
||||
color,
|
||||
endColor,
|
||||
});
|
||||
invalidate();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void drawIndicator(Canvas canvas) {
|
||||
if (mActiveView != null && isViewDescendant(mActiveView)) {
|
||||
Integer position = (Integer) mActiveView.getTag(R.id.mdActiveViewPosition);
|
||||
final int pos = position == null ? 0 : position;
|
||||
|
||||
if (pos == mActivePosition) {
|
||||
final int height = getHeight();
|
||||
final int menuHeight = mMenuSize;
|
||||
final int indicatorHeight = mActiveIndicator.getHeight();
|
||||
|
||||
mActiveView.getDrawingRect(mActiveRect);
|
||||
offsetDescendantRectToMyCoords(mActiveView, mActiveRect);
|
||||
final int indicatorWidth = mActiveIndicator.getWidth();
|
||||
|
||||
final int indicatorTop = height - menuHeight;
|
||||
final int indicatorBottom = indicatorTop + indicatorHeight;
|
||||
if (mIndicatorAnimating) {
|
||||
final int finalLeft = mActiveRect.left + ((mActiveRect.width() - indicatorWidth) / 2);
|
||||
final int startLeft = mIndicatorStartPos;
|
||||
final int diff = finalLeft - startLeft;
|
||||
final int startOffset = (int) (diff * mIndicatorOffset);
|
||||
mIndicatorLeft = startLeft + startOffset;
|
||||
} else {
|
||||
mIndicatorLeft = mActiveRect.left + ((mActiveRect.width() - indicatorWidth) / 2);
|
||||
}
|
||||
|
||||
canvas.save();
|
||||
canvas.clipRect(mIndicatorLeft, indicatorTop, mIndicatorLeft + indicatorWidth,
|
||||
indicatorBottom);
|
||||
canvas.drawBitmap(mActiveIndicator, mIndicatorLeft, indicatorTop, null);
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getIndicatorStartPos() {
|
||||
return mIndicatorLeft;
|
||||
}
|
||||
}
|
||||
+99
@@ -0,0 +1,99 @@
|
||||
package net.simonvt.menudrawer;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Canvas;
|
||||
import android.util.AttributeSet;
|
||||
import android.widget.FrameLayout;
|
||||
|
||||
/**
|
||||
* FrameLayout which caches the hardware layer if available.
|
||||
* <p/>
|
||||
* If it's not posted twice the layer either wont be built on start, or it'll be built twice.
|
||||
*/
|
||||
public class BuildLayerFrameLayout extends FrameLayout {
|
||||
|
||||
private boolean mChanged;
|
||||
|
||||
private boolean mHardwareLayersEnabled = true;
|
||||
|
||||
private boolean mAttached;
|
||||
|
||||
private boolean mFirst = true;
|
||||
|
||||
public BuildLayerFrameLayout(Context context) {
|
||||
super(context);
|
||||
if (MenuDrawer.USE_TRANSLATIONS) {
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
}
|
||||
}
|
||||
|
||||
public BuildLayerFrameLayout(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
if (MenuDrawer.USE_TRANSLATIONS) {
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
}
|
||||
}
|
||||
|
||||
public BuildLayerFrameLayout(Context context, AttributeSet attrs, int defStyle) {
|
||||
super(context, attrs, defStyle);
|
||||
if (MenuDrawer.USE_TRANSLATIONS) {
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
}
|
||||
}
|
||||
|
||||
void setHardwareLayersEnabled(boolean enabled) {
|
||||
mHardwareLayersEnabled = enabled;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onAttachedToWindow() {
|
||||
super.onAttachedToWindow();
|
||||
mAttached = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDetachedFromWindow() {
|
||||
super.onDetachedFromWindow();
|
||||
mAttached = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
|
||||
super.onSizeChanged(w, h, oldw, oldh);
|
||||
|
||||
if (MenuDrawer.USE_TRANSLATIONS && mHardwareLayersEnabled) {
|
||||
post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
mChanged = true;
|
||||
invalidate();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void dispatchDraw(Canvas canvas) {
|
||||
super.dispatchDraw(canvas);
|
||||
|
||||
if (mChanged && MenuDrawer.USE_TRANSLATIONS) {
|
||||
post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (mAttached) {
|
||||
final int layerType = getLayerType();
|
||||
// If it's already a hardware layer, it'll be built anyway.
|
||||
if (layerType != LAYER_TYPE_HARDWARE || mFirst) {
|
||||
mFirst = false;
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
buildLayer();
|
||||
setLayerType(LAYER_TYPE_NONE, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
mChanged = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
+170
@@ -0,0 +1,170 @@
|
||||
/*
|
||||
* Copyright (C) 2008 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.
|
||||
*/
|
||||
|
||||
package net.simonvt.menudrawer;
|
||||
|
||||
import android.content.res.Resources;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.ColorFilter;
|
||||
import android.graphics.Paint;
|
||||
import android.graphics.PixelFormat;
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/**
|
||||
* A specialized Drawable that fills the Canvas with a specified color.
|
||||
* Note that a ColorDrawable ignores the ColorFilter.
|
||||
* <p/>
|
||||
* <p>It can be defined in an XML file with the <code><color></code> element.</p>
|
||||
*
|
||||
* @attr ref android.R.styleable#ColorDrawable_color
|
||||
*/
|
||||
public class ColorDrawable extends Drawable {
|
||||
|
||||
private ColorState mState;
|
||||
private final Paint mPaint = new Paint();
|
||||
|
||||
/** Creates a new black ColorDrawable. */
|
||||
public ColorDrawable() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new ColorDrawable with the specified color.
|
||||
*
|
||||
* @param color The color to draw.
|
||||
*/
|
||||
public ColorDrawable(int color) {
|
||||
this(null);
|
||||
setColor(color);
|
||||
}
|
||||
|
||||
private ColorDrawable(ColorState state) {
|
||||
mState = new ColorState(state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getChangingConfigurations() {
|
||||
return super.getChangingConfigurations() | mState.mChangingConfigurations;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void draw(Canvas canvas) {
|
||||
if ((mState.mUseColor >>> 24) != 0) {
|
||||
mPaint.setColor(mState.mUseColor);
|
||||
canvas.drawRect(getBounds(), mPaint);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the drawable's color value.
|
||||
*
|
||||
* @return int The color to draw.
|
||||
*/
|
||||
public int getColor() {
|
||||
return mState.mUseColor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the drawable's color value. This action will clobber the results of prior calls to
|
||||
* {@link #setAlpha(int)} on this object, which side-affected the underlying color.
|
||||
*
|
||||
* @param color The color to draw.
|
||||
*/
|
||||
public void setColor(int color) {
|
||||
if (mState.mBaseColor != color || mState.mUseColor != color) {
|
||||
invalidateSelf();
|
||||
mState.mBaseColor = mState.mUseColor = color;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the alpha value of this drawable's color.
|
||||
*
|
||||
* @return A value between 0 and 255.
|
||||
*/
|
||||
public int getAlpha() {
|
||||
return mState.mUseColor >>> 24;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the color's alpha value.
|
||||
*
|
||||
* @param alpha The alpha value to set, between 0 and 255.
|
||||
*/
|
||||
public void setAlpha(int alpha) {
|
||||
alpha += alpha >> 7; // make it 0..256
|
||||
int baseAlpha = mState.mBaseColor >>> 24;
|
||||
int useAlpha = baseAlpha * alpha >> 8;
|
||||
int oldUseColor = mState.mUseColor;
|
||||
mState.mUseColor = (mState.mBaseColor << 8 >>> 8) | (useAlpha << 24);
|
||||
if (oldUseColor != mState.mUseColor) {
|
||||
invalidateSelf();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting a color filter on a ColorDrawable has no effect.
|
||||
*
|
||||
* @param colorFilter Ignore.
|
||||
*/
|
||||
public void setColorFilter(ColorFilter colorFilter) {
|
||||
}
|
||||
|
||||
public int getOpacity() {
|
||||
switch (mState.mUseColor >>> 24) {
|
||||
case 255:
|
||||
return PixelFormat.OPAQUE;
|
||||
case 0:
|
||||
return PixelFormat.TRANSPARENT;
|
||||
}
|
||||
return PixelFormat.TRANSLUCENT;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ConstantState getConstantState() {
|
||||
mState.mChangingConfigurations = getChangingConfigurations();
|
||||
return mState;
|
||||
}
|
||||
|
||||
static final class ColorState extends ConstantState {
|
||||
|
||||
int mBaseColor; // base color, independent of setAlpha()
|
||||
int mUseColor; // basecolor modulated by setAlpha()
|
||||
int mChangingConfigurations;
|
||||
|
||||
ColorState(ColorState state) {
|
||||
if (state != null) {
|
||||
mBaseColor = state.mBaseColor;
|
||||
mUseColor = state.mUseColor;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Drawable newDrawable() {
|
||||
return new ColorDrawable(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Drawable newDrawable(Resources res) {
|
||||
return new ColorDrawable(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getChangingConfigurations() {
|
||||
return mChangingConfigurations;
|
||||
}
|
||||
}
|
||||
}
|
||||
+672
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user