PowerMenu


Source link: https://github.com/skydoves/PowerMenu

PowerMenu

A library that let you implement popup so easily.

Download

Gradle

dependencies {

  compile 'com.github.skydoves:powermenu:1.0.3' 
}

Usage

Basic example

This is a basic example on a screenshot.
You can build PowerMenu using Builder.

PowerMenu powerMenu = new PowerMenu.Builder(context)

  .addItemList(list) // list has "Novel", "Poerty", "Art"

  .addItem(new PowerMenuItem("Journals", false))

  .addItem(new PowerMenuItem("Travel", false))

  .setAnimation(MenuAnimation.SHOWUP_TOP_LEFT) // Animation start point (TOP | LEFT)

  .setMenuRadius(10f)

  .setMenuShadow(10f)

  .setTextColor(context.getResources().getColor(R.color.md_grey_800))

  .setSelectedTextColor(Color.WHITE)

  .setMenuColor(Color.WHITE)

  .setSelectedMenuColor(context.getResources().getColor(R.color.colorPrimary))

  .setOnMenuItemClickListener(onMenuItemClickListener)

  .build();

You can add items or item List using PowerMenuItem class.
This is how to initialize PowerMenuItem.

PowerMenuItem powerMenuItem = new PowerMenuItem("Travel", true);

At first, argument is item Title, and the other is setting selected status.
If true, the item's text or background colour is changed by your settings like below

.setSelectedTextColor(Color.WHITE) .setSelectedMenuColor(context.getResources().getColor(R.color.colorPrimary))

You can listen to item click.

 private  OnMenuItemClickListener<PowerMenuItem> onMenuItemClickListener = new OnMenuItemClickListener<PowerMenuItem>() {

@Override

public void onItemClick(int position, PowerMenuItem item) {

 Toast.makeText(getBaseContext(), item.getTitle(), Toast.LENGTH_SHORT).show();

 powerMenu.setSelected(position);
 // change selected item

 powerMenu.dismiss();

}

  
}
;

and the last, show popup

powerMenu.showAsDropDown(view);
 // view is an anchor

or

powerMenu.showAsDropDown(view, (int)xOffset, (int)yOffset);

Customizing Popup

You can customizing item styles using CustomPowerMenu and your customized adapter.
Below is how to customizing popup item that has an icon.

At first, you should create your item model.

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 next, you should create your own customized XML layout and adapter.
Custom Adapter should extend MenuBaseAdapter<YOUR_ITEM_MODEL>.

public class IconMenuAdapter extends MenuBaseAdapter<IconPowerMenuItem> {

@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 view;
  
}
 
}
 

and the last, build CustomPowerMenu.

CustomPowerMenu customPowerMenu = new CustomPowerMenu.Builder<>(context, new IconMenuAdapter())

  .addItem(new IconPowerMenuItem(context.getResources().getDrawable(R.drawable.ic_wechat), "WeChat"))

  .addItem(new IconPowerMenuItem(context.getResources().getDrawable(R.drawable.ic_facebook), "Facebook"))

  .addItem(new IconPowerMenuItem(context.getResources().getDrawable(R.drawable.ic_twitter), "Twitter"))

  .addItem(new IconPowerMenuItem(context.getResources().getDrawable(R.drawable.ic_line), "Line"))

  .setOnMenuItemClickListener(onMenuItemClickListener)

  .setAnimation(MenuAnimation.SHOWUP_TOP_RIGHT)

  .setMenuRadius(10f)

  .setMenuShadow(10f)

  .build();
 

You can add a onMenuItemClickListener like below.

private OnMenuItemClickListener<IconPowerMenuItem> onIconMenuItemClickListener = new OnMenuItemClickListener<IconPowerMenuItem>() {

@Override

public void onItemClick(int position, IconPowerMenuItem item) {

 Toast.makeText(getBaseContext(), item.getTitle(), Toast.LENGTH_SHORT).show();

 iconMenu.dismiss();

}

  
}
;

Functions

Popup & Item Attrubutes

.addItemList(list) .addItem(new PowerMenuItem("Journals", false)) // add an PowerMenuItem .addItem(3, new PowerMenuItem("Travel", false)) // add an PowerMenuItem at position 3 .setLifecycleOwner(lifecycleOwner) // set powermenu's LifecycleOwner what activity or fragment. This make avoid memory leak. .setWith(300) // set popup width size .setHeight(400) // set popup height size .setMenuRadius(10f) // set popup corner radius .setMenuShadow(10f) // set popup shadow .setDivider(new ColorDrawable(context.getResources().getColor(R.color.md_blue_grey_300))) // set a divider .setDividerHeight(1) // set divider's height .setAnimation(MenuAnimation.FADE) // set Animation .setTextColor(context.getResources().getColor(R.color.md_grey_800)) // set normoal item text color .setSelectedTextColor(Color.WHITE) // set selected item text color .setMenuColor(Color.WHITE) // set normoal item background color .setSelectedMenuColor(context.getResources().getColor(R.color.colorPrimary)) // set selected item background color .setSelectedEffect(false) // if false, no apply selected colors(text, background) .setOnMenuItemClickListener(onMenuItemClickListener) // add a item click listener

Background Attrubutes

.setBackgroundAlpha(0.7f) // set background's alpha .setBackgroundColor(Color.GRAY) // set background's color .setShowBackground(false) // set showing background .setOnBackgroundClickListener(onClickListener) // set a background click listener. default is dismiss popup.

Show & Dismiss

.showAsDropDown(view);
 // show popup with drop-down at anchor view .showAsDropDown(view, -370, 0);
 // showAsDropDown with moves (xoff, yoff) .showAtCenter(layout);
 // show popup at anchor view's center .showAtCenter(layout, 0, 0);
 // showAtCenter with moves (xoff, yoff) .isShowing();
 return true or false .dismiss();
 // dismiss 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 also integrated with the Support Library since Architecture Components 1.0 Stable released.
So you can solve memory leak issue so easily.

First, implement LifecycleOwner on your activity or fragment.

public class MainActivity extends AppCompatActivity implements LifecycleOwner

The last, just use setLifecycleOwner method before show.

.setLifecycleOwner(lifecycleOwner)

License

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.

Resources

The easy way to take screenshots of your application programmatically.

Newtron Watchdog allows the critical applications you develop for Android to keep running even after an application crash.

Love Architecture Components' ViewModels but hate how hard it is to instantiate them?

Hire Alfred and start doing just this!

This project allowing you to create circular and rounded corner imageview in android through simplest way.

It uses a BitmapShader and does not:

  • create a copy of the original bitmap
  • use a clipPath (which is neither hardware accelerated nor anti-aliased)
  • use setXfermode to clip the bitmap (which means drawing twice to the canvas)

This little Project written by Kotlin used Retrofit and Rxjava and so on. Pull data from Readhub which is a news aggregator website in China.

An android custom view for emoji style rating selection.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes