All Projects → imtianx → Popmenu

imtianx / Popmenu

Licence: apache-2.0
自定义对话框的使用,仿照ios。从底部弹出,类似pop窗口。包括消息、图片、列表及对话框。

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Popmenu

Search Dialog
Android Search Dialog Library
Stars: ✭ 77 (-27.36%)
Mutual labels:  dialog
React Native Dialog Component
A react native dialog component support custom animation for IOS & Android.
Stars: ✭ 81 (-23.58%)
Mutual labels:  dialog
Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (-11.32%)
Mutual labels:  dialog
React Poppop
A mobile support and multi-directional modal for ReactJS
Stars: ✭ 78 (-26.42%)
Mutual labels:  dialog
Alertjs
Dialog Builder allows you to create fully customisable dialogs and popups in Dynamics 365.
Stars: ✭ 80 (-24.53%)
Mutual labels:  dialog
Core Components
Accessible and lightweight Javascript components
Stars: ✭ 85 (-19.81%)
Mutual labels:  dialog
React Native Alert Pro
The Pro Version of React Native Alert (Android & iOS)
Stars: ✭ 69 (-34.91%)
Mutual labels:  dialog
Flat Dialog Android
📱Android Library to implement beautiful dialogs in android apps easily
Stars: ✭ 102 (-3.77%)
Mutual labels:  dialog
Backgroundupdate
后台更新APP(两句代码实现)
Stars: ✭ 80 (-24.53%)
Mutual labels:  dialog
Windowshowdemo
Android 弹窗案例总结(仿淘宝弹窗 咸鱼菜单 筛选列表)
Stars: ✭ 95 (-10.38%)
Mutual labels:  dialog
Transfer Learning Conv Ai
🦄 State-of-the-Art Conversational AI with Transfer Learning
Stars: ✭ 1,217 (+1048.11%)
Mutual labels:  dialog
Ng Popups
🎉 Alert, confirm and prompt dialogs for Angular. Simple as that.
Stars: ✭ 80 (-24.53%)
Mutual labels:  dialog
Launchy
Launchy: An Accessible Modal Window
Stars: ✭ 89 (-16.04%)
Mutual labels:  dialog
Apprater Dialog
A dialog which asks the user to rate the app
Stars: ✭ 77 (-27.36%)
Mutual labels:  dialog
Immersionbar
android 4.4以上沉浸式状态栏和沉浸式导航栏管理,适配横竖屏切换、刘海屏、软键盘弹出等问题,可以修改状态栏字体颜色和导航栏图标颜色,以及不可修改字体颜色手机的适配,适用于Activity、Fragment、DialogFragment、Dialog,PopupWindow,一句代码轻松实现,以及对bar的其他设置,详见README。简书请参考:http://www.jianshu.com/p/2a884e211a62
Stars: ✭ 10,030 (+9362.26%)
Mutual labels:  dialog
Shoptagdialog
高仿淘宝立即购买后的标签选择Dialog
Stars: ✭ 73 (-31.13%)
Mutual labels:  dialog
Jbox
jBox is a jQuery plugin that makes it easy to create customizable tooltips, modal windows, image galleries and more.
Stars: ✭ 1,251 (+1080.19%)
Mutual labels:  dialog
Fancy Flutter Alert Dialog
flutter package to show well designed alert dialog
Stars: ✭ 103 (-2.83%)
Mutual labels:  dialog
Customalertviewdialogue
Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms.
Stars: ✭ 100 (-5.66%)
Mutual labels:  dialog
Flipprogressdialog
Airbnb like ProgressDialog with Image Flip Animation.🛌🍞✨
Stars: ✭ 92 (-13.21%)
Mutual labels:  dialog

PopMenu

License Stars Stars Forks

自定义对话框的使用,仿照ios。从底部弹出,类似pop窗口。包括消息、图片、列表及对话框。

演示效果: image

使用方法:

new ActionSheetDialog(context).show();
new ActionSheetDialog(context).show();

注:context = 当前activity.this;

具体用法:

//(1)
new ActionSheetDialog (context)
.builder()
.setTitle ("清空消息列表后,聊天记录依然保留,确定要清空消息列表?")
.setCancelable (false)
.setCanceledOnTouchOutside (false)
.addSheetItem ("清空消息列表", ActionSheetDialog.SheetItemColor.Red
	       , new ActionSheetDialog.OnSheetItemClickListener()
{
    @Override
    public void onClick (int which)
    {

    }
}).show();

//(2)
new ActionSheetDialog (context)
.builder()
.setTitle ("清空消息列表后,聊天记录依然保留,确定要清空消息列表?")
.setCancelable (false)
.setCanceledOnTouchOutside (false)
.addSheetItem ("清空消息列表", ActionSheetDialog.SheetItemColor.Red
	       , new ActionSheetDialog.OnSheetItemClickListener()
{
    @Override
    public void onClick (int which)
    {

    }
}).show();
   Copyright 2016 imtiaanx

   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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].