PowerMenu


:fire: The powerful and easiest way to implement modern material popup menu.
PowerMenu can be fully customized and used for popup dialogs.


License API CI Codacy
AndroidWeekly Medium Profile Javadoc


## Download [![Download](https://api.bintray.com/packages/devmagician/maven/powermenu/images/download.svg)](https://bintray.com/devmagician/maven/powermenu/_latestVersion) [![Jitpack](https://jitpack.io/v/skydoves/PowerMenu.svg)](https://jitpack.io/#skydoves/PowerMenu) I really appreciate that 🔥Power Menu is used in more than __90,000+__ project's dependency all over the 🌎world.
![screenshot1903218121](https://user-images.githubusercontent.com/24237865/64470618-49c2cb80-d181-11e9-99b4-0e14a20a86a0.png) ### Gradle And add a dependency code to your **module**'s `build.gradle` file. ```gradle dependencies { implementation "com.github.skydoves:powermenu:2.1.3" } ``` ## Table of Contents __[1. PowerMenu](https://github.com/skydoves/PowerMenu#usage)__
__[2. Customizing Popup](https://github.com/skydoves/PowerMenu#customizing-popup)__
__[3. Preference](https://github.com/skydoves/PowerMenu#preference)__
__[4. Menu Effect](https://github.com/skydoves/PowerMenu#menu-effect)__
__[5. Dialogs](https://github.com/skydoves/PowerMenu#dialogs)__
__[6. Anchor](https://github.com/skydoves/PowerMenu#anchor)__
__[7. Background](https://github.com/skydoves/PowerMenu#background)__
__[8. Avoid Memory leak](https://github.com/skydoves/PowerMenu#avoid-memory-leak)__
__[9. Functions](https://github.com/skydoves/PowerMenu#functions)__
__[10. Lazy initialization in Kotlin](https://github.com/skydoves/PowerMenu#lazy-initialization-in-kotlin)__
## Usage ### Basic example This is a basic example on a screenshot. Here is how to create `PowerMenu` using `PowerMenu.Builder`. ```java PowerMenu powerMenu = new PowerMenu.Builder(context) .addItemList(list) // list has "Novel", "Poerty", "Art" .addItem(new PowerMenuItem("Journals", false)) // add an item. .addItem(new PowerMenuItem("Travel", false)) // aad an item list. .setAnimation(MenuAnimation.SHOWUP_TOP_LEFT) // Animation start point (TOP | LEFT). .setMenuRadius(10f) // sets the corner radius. .setMenuShadow(10f) // sets the shadow. .setTextColor(ContextCompat.getColor(context, R.color.md_grey_800)) .setTextGravity(Gravity.CENTER) .setTextTypeface(Typeface.create("sans-serif-medium", Typeface.BOLD)) .setSelectedTextColor(Color.WHITE) .setMenuColor(Color.WHITE) .setSelectedMenuColor(ContextCompat.getColor(context, R.color.colorPrimary)) .setOnMenuItemClickListener(onMenuItemClickListener) .build(); ``` We can add an item or an item list using `PowerMenuItem` class. This is how to initialize `PowerMenuItem`. ```java new PowerMenuItem("Travel"); new PowerMenuItem("Poetery", false); // item name, isSelected (default is false). new PowerMenuItem("Art", R.drawable.icon_art) // item name, item menu icon. new PowerMenuItem("Travel", R.drawable.icon_travel, true) // item name, item menu icon, isSelected . ``` The first argument is an item **title**, and the other is **selected status**.
If **isSelected** is true, the item's text and the background color will be changed by settings like below.
```java .setSelectedTextColor(Color.WHITE) // sets the color of the selected item text. .setSelectedMenuColor(ContextCompat.getColor(context, R.color.colorPrimary)) // sets the color of the selected menu item color. ``` `OnMenuItemClickListener` is for listening to the item click of the popup menu. ```java private OnMenuItemClickListener onMenuItemClickListener = new OnMenuItemClickListener() { @Override public void onItemClick(int position, PowerMenuItem item) { Toast.makeText(getBaseContext(), item.getTitle(), Toast.LENGTH_SHORT).show(); powerMenu.setSelectedPosition(position); // change selected item powerMenu.dismiss(); } }; ``` After implementing the listener, we should set using `setOnMenuItemClickListener` method. ```java .setOnMenuItemClickListener(onMenuItemClickListener) ``` The last, show the popup! [Various show & dismiss methods](https://github.com/skydoves/PowerMenu#show--dismiss). ```java powerMenu.showAsDropDown(view); // view is an anchor ``` ## Customizing Popup We can customize item styles using `CustomPowerMenu` and your customized adapter.
Here is how to customize the popup item that has an icon.
![custom0](https://user-images.githubusercontent.com/24237865/45586080-5a07e800-b92b-11e8-8c7e-5aa0e524598c.png) ![gif0](https://user-images.githubusercontent.com/24237865/45586081-5a07e800-b92b-11e8-9cba-303eb013b7c9.gif)
Firstly, we should create our item model class. ```java public class IconPowerMenuItem { private Drawable icon; private String title; public IconPowerMenuItem(Drawable icon, String title) { this.icon = icon; this.title = title; } // --- skipped setter and getter methods } ``` And we should create our customized XML layout and an adapter.
Custom Adapter should extend `MenuBaseAdapter`. ```java public class IconMenuAdapter extends MenuBaseAdapter { @Override public View getView(int index, View view, ViewGroup viewGroup) { final Context context = viewGroup.getContext(); if(view == null) { LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); view = inflater.inflate(R.layout.item_icon_menu, viewGroup, false); } IconPowerMenuItem item = (IconPowerMenuItem) getItem(index); final ImageView icon = view.findViewById(R.id.item_icon); icon.setImageDrawable(item.getIcon()); final TextView title = view.findViewById(R.id.item_title); title.setText(item.getTitle()); return super.getView(index, view, viewGroup); } } ``` The last, create the `CustomPowerMenu` with the `onMenuItemClickListener`. ```java CustomPowerMenu customPowerMenu = new CustomPowerMenu.Builder<>(context, new IconMenuAdapter()) .addItem(new IconPowerMenuItem(ContextCompat.getDrawable(context, R.drawable.ic_wechat), "WeChat")) .addItem(new IconPowerMenuItem(ContextCompat.getDrawable(context, R.drawable.ic_facebook), "Facebook")) .addItem(new IconPowerMenuItem(ContextCompat.getDrawable(context, R.drawable.ic_twitter), "Twitter")) .addItem(new IconPowerMenuItem(ContextCompat.getDrawable(context, R.drawable.ic_line), "Line")) .setOnMenuItemClickListener(onIconMenuItemClickListener) .setAnimation(MenuAnimation.SHOWUP_TOP_RIGHT) .setMenuRadius(10f) .setMenuShadow(10f) .build(); ``` ```java private OnMenuItemClickListener onIconMenuItemClickListener = new OnMenuItemClickListener() { @Override public void onItemClick(int position, IconPowerMenuItem item) { Toast.makeText(getBaseContext(), item.getTitle(), Toast.LENGTH_SHORT).show(); iconMenu.dismiss(); } }; ``` ## Preference PowerMenu supports saving of the last selected menu and recovering as lifecycle.
Here is how to save and recover selected menu. ```java return new PowerMenu.Builder(context) // saves the position automatically when the menu is selected. // If we set the same preference name on the other PowerMenus, they will share the saving position. .setPreferenceName("HamburgerPowerMenu") // invokes the listener automatically that has the saved position arguments along the lifecycle rule. // lifecycle rules should be ON_CREATE, ON_START or ON_RESUME. // in the below codes, the onMenuClickListener will be invoked when onCreate lifecycle. .setLifecycleOwner(lifecycleOwner) .setInitializeRule(Lifecycle.Event.ON_CREATE, 0) // Lifecycle.Event and default position. --- skips --- ``` Here are the methods related to preference. ```java .getPreferenceName() // gets the preference name of PowerMenu. .getPreferencePosition(int defaultPosition) // gets the saved preference position from the SharedPreferences. .setPreferencePosition(int defaultPosition) // sets the preference position name for persistence manually. .clearPreference() // clears the preference name of PowerMenu. ``` ## Menu Effect We can give two types of circular revealed animation effect.

![menu_effect01](https://user-images.githubusercontent.com/24237865/52637461-9a878400-2f12-11e9-8a78-decfc1641d5b.gif) ![menu_effect02](https://user-images.githubusercontent.com/24237865/52637462-9a878400-2f12-11e9-935d-189c518fe435.gif)
Here is how to create a menu effect simply. ```java .setCircularEffect(CircularEffect.BODY) // shows circular revealed effects for all body of the popup menu. .setCircularEffect(CircularEffect.INNER) // Shows circular revealed effects for the content view of the popup menu. ``` ## Dialogs We can create looks like dialogs using `PowerMenu`.

![screenshot_2017-12-18-23-39-00](https://user-images.githubusercontent.com/24237865/34111113-1de9bfce-e44c-11e7-9b60-44b8d440b910.png) ![screenshot_2017-12-18-23-39-05](https://user-images.githubusercontent.com/24237865/34111114-1e19ddf8-e44c-11e7-9747-17713d2932bd.png)
Here is an example of the normal dialog. Dialogs are composed of a header, footer, and body.
```java PowerMenu powerMenu = new PowerMenu.Builder(context) .setHeaderView(R.layout.layout_dialog_header) // header used for title .setFooterView(R.layout.layout_dialog_footer) // footer used for yes and no buttons .addItem(new PowerMenuItem("This is DialogPowerMenu", false)) // this is body .setLifecycleOwner(lifecycleOwner) .setAnimation(MenuAnimation.SHOW_UP_CENTER) .setMenuRadius(10f) .setMenuShadow(10f) .setWith(600) .setSelectedEffect(false) .build(); ``` And we can create a customized dialog like below. ```java CustomPowerMenu customPowerMenu = new CustomPowerMenu.Builder<>(context, new CustomDialogMenuAdapter()) setHeaderView(R.layout.layout_custom_dialog_header) // header used for title .setFooterView(R.layout.layout_custom_dialog_footer) // footer used for Read More and Close buttons // this is body .addItem(new NameCardMenuItem(ContextCompat.getDrawable(context, R.drawable.face3), "Sophie", context.getString(R.string.board3))) .setLifecycleOwner(lifecycleOwner) .setAnimation(MenuAnimation.SHOW_UP_CENTER) .setWith(800) .setMenuRadius(10f) .setMenuShadow(10f) .build(); ``` ## Anchor We can show the popup menu as drop down to the anchor.

```java .showAsAnchorLeftTop(view) // showing the popup menu as left-top aligns to the anchor. .showAsAnchorLeftBottom(view) // showing the popup menu as left-bottom aligns to the anchor. .showAsAnchorRightTop(view) // using with .setAnimation(MenuAnimation.SHOWUP_TOP_RIGHT) looks better .showAsAnchorRightBottom(view) // using with .setAnimation(MenuAnimation.SHOWUP_TOP_RIGHT) looks better .showAsAnchorCenter(view) // using with .setAnimation(MenuAnimation.SHOW_UP_CENTER) looks better ``` or we can control the position of the popup menu using the below methods. ```java .getContentViewWidth() // return popup's measured width .getContentViewHeight() // return popup's measured height ``` like this : ```java // showing the popup menu at the center of an anchor. This is the same using .showAsAnchorCenter. hamburgerMenu.showAsDropDown(view, view.getMeasuredWidth()/2 - hamburgerMenu.getContentViewWidth(), -view.getMeasuredHeight()/2 - hamburgerMenu.getContentViewHeight()); ```
## Background These are options for the background. ```java .setShowBackground(false) // do not showing background. .setTouchInterceptor(onTouchListener) // sets the touch listener for the outside of popup. .setFocusable(true) // makes focusing only on the menu popup. ``` ## Avoid Memory leak Dialog, PopupWindow and etc.. have memory leak issue if not dismissed before activity or fragment are destroyed.
But Lifecycles are now integrated with the Support Library since Architecture Components 1.0 Stable released.
So we can solve the memory leak issue so easily.
Just use `setLifecycleOwner` method. Then `dismiss` method will be called automatically before activity or fragment would be destroyed. ```java .setLifecycleOwner(lifecycleOwner) ``` ## Lazy initialization in Kotlin We can initialize the `PowerMenu` property lazily using `powerMenu` keyword and `PowerMenu.Factory` abstract class.
The `powerMenu` extension keyword can be used in Activity and Fragment. ```kotlin class MainActivity : AppCompatActivity() { private val moreMenu by powerMenu(MoreMenuFactory::class) //.. ``` We should create a factory class which extends `PowerMenu.Factory`.
An implementation class of the factory must have a default(non-argument) constructor. ```kotlin class MoreMenuFactory : PowerMenu.Factory() { override fun create(context: Context, lifecycle: LifecycleOwner?): PowerMenu { return createPowerMenu(context) { addItem(PowerMenuItem("Novel", true)) addItem(PowerMenuItem("Poetry", false)) setAutoDismiss(true) setLifecycleOwner(lifecycle) setAnimation(MenuAnimation.SHOWUP_TOP_LEFT) setTextColor(ContextCompat.getColor(context, R.color.md_grey_800)) setTextSize(12) setTextGravity(Gravity.CENTER) setTextTypeface(Typeface.create("sans-serif-medium", Typeface.BOLD)) setSelectedTextColor(Color.WHITE) setMenuColor(Color.WHITE) setInitializeRule(Lifecycle.Event.ON_CREATE, 0) } } } ``` ## Functions ### PowerMenu methods ```java .addItemList(list) // add a PowerMenuItem list. .addItem(new PowerMenuItem("Journals", false)) // add a PowerMenuItem. .addItem(3, new PowerMenuItem("Travel", false)) // add a PowerMenuItem at position 3. .setLifecycleOwner(lifecycleOwner) // set LifecycleOwner for preventing memory leak. .setWith(300) // sets the popup width size. .setHeight(400) // sets the popup height size. .setMenuRadius(10f) // sets the popup corner radius. .setMenuShadow(10f) // sets the popup shadow. .setDivider(new ColorDrawable(ContextCompat.getColor(context, R.color.md_blue_grey_300))) // sets a divider. .setDividerHeight(1) // sets the divider height. .setAnimation(MenuAnimation.FADE) // sets animations of the popup. It will start up when the popup is showing. .setTextColor(ContextCompat.getColor(context, R.color.md_grey_800)) // sets the color of the default item text. .setTextSize(12) // sets a text size of the item text .setTextGravity(Gravity.CENTER) // sets a gravity of the item text. .setTextTypeface(Typeface.create("sans-serif-medium", Typeface.BOLD)) // sets a typeface of the item text .setSelectedTextColor(Color.WHITE) // sets the color of the selected item text. .setMenuColor(Color.WHITE) // sets the color of the menu item color. .setSelectedMenuColor(ContextCompat.getColor(context, R.color.colorPrimary)) // sets the color of the selected menu item color. .setSelectedEffect(false) // sets the selected effects what changing colors of the selected menu item. .setOnMenuItemClickListener(onMenuItemClickListener) // sets an item click listener. .setOnDismissListener(OnDismissedListener onDismissListener) // sets a menu dismiss listener. .setHeaderView(View view) // sets the header view of the popup menu list. .setHeaderView(int layout) // sets the header view of the popup menu using layout. .setFooterView(View view) // sets the footer view of the popup menu list. .setFooterView(int layout) // sets the footer view of the popup menu using layout. .setSelection(int position) // sets the selected position of the popup menu. It can be used for scrolling as the position. .getSelectedPosition() // gets the selected item position. if not selected before, returns -1 . .getHeaderView() // gets the header view of the popup menu list. .getFooterView() // gets the footer view of the popup menu list. .getMenuListView() // gets the ListView of the popup menu. ``` ### Background methods ```java .setBackgroundAlpha(0.7f) // sets the alpha of the background. .setBackgroundColor(Color.GRAY) // sets the color of the background. .setShowBackground(false) // sets the background is showing or not. .setOnBackgroundClickListener(onClickListener) // sets the background click listener of the background. ``` ### Show & Dismiss ```java .showAsDropDown(View anchor); // showing the popup menu as drop down to the anchor. .showAsDropDown(View anchor, -370, 0); // showing the popup menu as drop down to the anchor with x-off and y-off. .showAtCenter(View layout); // showing the popup menu as center aligns to the anchor. .showAtCenter(View layout, 0, 0); // showing the popup menu as center aligns to the anchor with x-off and y-off. .showAtLocation(View anchor, int xOff, int yOff) // showing the popup menu as center aligns to the anchor with x-off and y-off. .showAtLocation(View anchor, int gravity, int xOff, int yOff) // showing the popup menu to the specific location to the anchor with Gravity. .isShowing(); // gets the popup is showing or not. .dismiss(); // dismiss the popup. ``` ## Find this library useful? :heart: Support it by joining [stargazers](https://github.com/skydoves/PowerMenu/stargazers) for this repository. :star:
And __[follow](https://github.com/skydoves)__ me for my next creations! 🤩 # License ```xml Copyright 2017 skydoves 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. ```