Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sephiroth74/OverlayMenu

Android Overlay Menu
https://github.com/sephiroth74/OverlayMenu

Last synced: 3 months ago
JSON representation

Android Overlay Menu

Awesome Lists containing this project

README

        

# Overlay Menu
Android Overlay Menu

Demo:
==

[![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 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.