Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

peachDaddy/PopMenu

Repository files navigation

PopMenu

自定义对话框的使用,仿照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();

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

Languages

  • Java 100.0%

AltStyle によって変換されたページ (->オリジナル) /