Code Monkey home page Code Monkey logo

popupmenuview's Introduction

PopupMenuView

此库主要实现了一个类似iOS中的UIMenuController控件的Popup控件。 主要控件如下:

  • PopLayout继承自FrameLayout,用于实现控件的气泡化。
  • OptionMenuView继承自LinearLayout,用于实现Menu控件。
  • PopupView继承自PopupWindow,用于实现控件的指定方位弹出效果。
  • PopupMenuView是上述三者的集合,实现了弹出气泡菜单的功能。

预览图片

Demo

安装 apk 文件预览效果,或者通过下面二维码去下载安装:

DEMO下载二维码

Usage

Use Gradle:

compile 'me.kareluo.ui:popmenu:1.1.0'

Or Maven:

<dependency>
  <groupId>me.kareluo.ui</groupId>
  <artifactId>popmenu</artifactId>
  <version>1.1.0</version>
  <type>pom</type>
</dependency>

Sample

PopupMenuView可以通过menu布局文件加载出预先准备的菜单:

// 根据menu资源文件创建
PopupMenuView menuView = new PopupMenuView(this, R.menu.menu_pop, new MenuBuilder(context));

// 设置点击监听事件
menuView.setOnMenuClickListener(new OptionMenuView.OnOptionMenuClickListener() {
    @Override
    public boolean onOptionMenuClick(int position, OptionMenu menu) {
        Toast.makeText(this, menu.getTitle(), Toast.LENGTH_SHORT).show();
        return true;
    }
});

// 显示在mButtom控件的周围
menuView.show(mButtom);

或者通过代码添加:

menuView.setMenuItems(Arrays.asList(
    new OptionMenu("复制"), new OptionMenu("转发到朋友圈"),
    new OptionMenu("收藏"), new OptionMenu("翻译"),
    new OptionMenu("删除")));

默认的显示方位为:上、下、左、右,即按照这种顺序测试界面是否可以显示下菜单,可以如下方式自定义:

menuView.setSites(PopupView.SITE_BOTTOM, PopupView.SITE_LEFT, PopupView.SITE_TOP, PopupView.SITE_RIGHT);

Update Logs

v1.0.0

  • 弹出菜单PopupMenuView
  • 气泡布局
  • 菜单控件

v1.0.1

  • 移除support库引用,加载menu资源文件方法变动

v1.0.2

  • 增加气泡布局资源属性offsetSize,并修改部分资源属性名称

v1.0.3

  • 修改了module的名称,之前版本为library,后续版本为popmenu

v1.0.4

  • 修复菜单条目变化时无法显示BUG

v1.0.5

  • 增加自定义样式接口

v1.1.0

  • 默认样式微调
  • 菜单项过多时可滚动视图

License

Copyright 2016 kareluo.

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.

popupmenuview's People

Contributors

minetsh avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.