Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sephiroth74/OverlayMenu
Android Overlay Menu
https://github.com/sephiroth74/OverlayMenu
Last synced: 3 months ago
JSON representation
Android Overlay Menu
- Host: GitHub
- URL: https://github.com/sephiroth74/OverlayMenu
- Owner: sephiroth74
- License: apache-2.0
- Created: 2015-03-30T22:05:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-30T22:58:59.000Z (over 9 years ago)
- Last Synced: 2024-06-28T11:35:27.623Z (5 months ago)
- Language: Java
- Size: 638 KB
- Stars: 120
- Watchers: 8
- Forks: 31
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/sephiroth74/OverlayMenu
README
# Overlay Menu
Android Overlay MenuDemo:
==[![Demo Video](http://img.youtube.com/vi/voFWb40sBJQ/0.jpg)](http://youtu.be/voFWb40sBJQ)
Installation:
==Add this dependency to your gradle script:
compile 'it.sephiroth.android.library.overlaymenu:overlay-menu:1.0'
Usage:
==Add an instance of the OverlayView in your layout:
where the overmenuEntries array is defined in your arrays.xml like this:
First Item
Second Item
Third Item
Fourth Item
Fifth Item
Sixth Item
Seventh Item
Then in your activity:overMenuView = (OverMenuView) findViewById(R.id.overmenu);
overMenuView.setOnSelectionChangedListener(this);
overMenuView.setOnMenuVisibilityChangeListener(this);
@Override
public void onSelectionChanged(final int position) {
Log.d(TAG, "onSelectionChanged: " + position);
}@Override
public void onVisibilityChanged(final View view, final boolean visible) {
Log.d(TAG, "onVisibilityChanged: " + view + ", " + visible);
}
License:
==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 athttp://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.