仿IOS样式的弹出框

仿IOS样式的弹出框

AndroidSuperDialog

项目地址: mylhyl/AndroidSuperDialog 
简介:IOS 风格对话框,基于 FragmentDialog 封装,用法完全符合 Dialog 方法链
更多: 作者    提 Bug    示例 APK   
标签:
dialog-

基于DialogFragment封装,支持自定义边框圆角、背景透明度、字体大小与色值等。 列表选择框可以接收ListArrays的数据源,详细见demo。 初衷是掌握知识点,此库不一定适合你的产品整体风格,当然能够适合你的项目最好不过,有建议和不足之处欢迎骚扰。

知识点

全代码创建shapeselectorLayout,三大Layout不用多讲,肯定都会的,主要是Shape所使用类如下:

  • shape对应ShapeDrawableRoundRectShape
  • selector对应StateListDrawable

效果图

引入

 compile 'com.mylhyl:superDialog:1.2.1'

eclipse 可以点击这里下载 aar 文件, 然后用 zip 解压取出 jar 包

使用

简单的对话框

                new SuperDialog.Builder(this).setRadius(10)
                        .setAlpha(0.5f)
                        .setTitle("标题").setMessage("可以看到?")
                        .setPositiveButton("确定", new SuperDialog.OnClickPositiveListener() {
                            @Override
                            public void onClick(View v) {
                                Toast.makeText(v.getContext(), "点了确定", Toast.LENGTH_LONG).show();
                            }
                        }).build();

选择对话框

                //final String[] strings = {"拍照", "从相册选择", "小视频"};
                List<People> list = new ArrayList<>();
                list.add(new People(1,"拍照"));
                list.add(new People(2,"从相册选择"));
                list.add(new People(3,"小视频"));
                new SuperDialog.Builder(this)
                        //.setAlpha(0.5f)
                        //.setGravity(Gravity.CENTER)
                        //.setTitle("上传头像", ColorRes.negativeButton)
                        .setCanceledOnTouchOutside(false)
                        .setItems(list, new SuperDialog.OnItemClickListener() {
                            @Override
                            public void onItemClick(int position) {
                                Toast.makeText(MainActivity.this, strings[position], Toast.LENGTH_LONG).show();
                            }
                        })
                        .setNegativeButton("取消", null)
                        .build();
  • 输入框 setInput()
  • 宽度setWidth(@FloatRange(from = 0.0, to = 1.0) float width)
  • 边距setPadding(int left, int top, int right, int bottom)
  • 动画setWindowAnimations(int animStyle)
  • 列表框距离下方按钮的间距setItemsBottomMargin(int bottomMargin)
  • 指定位置显示setShowAtLocation(int gravity, int x, int y)
  • 指定控件左下方 setShowAsDropDown(View anchor, int x, int y)
  • 设置背景是否昏暗setDimEnabled(boolean dimEnabled)
  • setConfigDialog更多使用
      .setConfigDialog(new SuperDialog.ConfigDialog() {
          @Override
          public void onConfig(Dialog dialog, Window window, WindowManager
                  .LayoutParams wlp, DisplayMetrics dm) {
              window.setWindowAnimations(R.style.dialogWindowAnim);//动画
              wlp.y = 100;//底部距离
          }
      })
    

说明

* 此库自动将 px 转换百分比,由于 Dialog 布局一般只有微调,暂时只支持 textSize,height,padding
* 默认字体大小;Title、message、button、padding 的 px 在设计稿为 1080 * 1920 的尺寸
* 也可自己定义,只需在 manifest.xml 中加入如下格式
<meta-data android:name="design_width" android:value="1200"/>
<meta-data android:name="design_height" android:value="1920"/>

QQ 交流群:435173211

感谢

AutoLayout-Android

版本

1.2.1 修复确定事件不能传null的问题

1.2.0 增加输入框,优化细节

1.1.0 增加 manifest.xml 中配置大小

1.0.12 修复 bug,增加refreshContent刷新内容方法

1.0.11 修复 bug,增加setCancelable方法

1.0.9 修复setPadding引起的 crash

1.0.8 修复列表模式单条数据无圆角效果

1.0.7 修复旋转屏幕引起的 crash

1.0.6 增加动画、边距等配置

1.0.5 支持调整宽度setWidth

1.0.4 修复无底部按钮,内容下边缘无圆角 Bug

1.0.3 修复dismiss()无效的问题

1.0.2 增加背景方法setBackgroundColor


原文链接:http://p.codekk.com/detail/Android/mylhyl/AndroidSuperDialog



第二种:

AlertView

项目地址: Hamadakram/AlertView 
简介:A library to create simple alerts easily with some customization. Written in Kotlin but works for both Kotlin and Java
更多: 作者    提 Bug   
标签:

A library to create simple alerts easily with some customization. Written in Kotlin but works for both Kotlin and Java

Download

Grab via Gradle:

implementation 'com.irozon.alertview:alertview:1.0.1'
implementation 'com.android.support:design:27.1.0'

Usage

Kotlin

val alert = AlertView("Title", "Message", AlertStyle.BOTTOM_SHEET)
alert.addAction(AlertAction("Action 1", AlertActionStyle.DEFAULT, { action ->
// Action 1 callback
}))
alert.addAction(AlertAction("Action 2", AlertActionStyle.NEGATIVE, { action ->
// Action 2 callback
}))

alert.show(this)

Java

Using Lambda

AlertView alert = new AlertView("Title", "Message", AlertStyle.BOTTOM_SHEET);
alert.addAction(new AlertAction("Action 1", AlertActionStyle.DEFAULT, action -> {
// Action 1 callback
}));
alert.addAction(new AlertAction("Action 2", AlertActionStyle.NEGATIVE, action -> {
// Action 2 callback
}));

alert.show(this);

AlertStyle

There are three alert styles

  1. AlertStyle.BOTTOM_SHEET
  2. AlertStyle.IOS
  3. AlertStyle.DIALOG

AlertActionStyle

Three types of Alert Action button styles

  1. AlertActionStyle.POSITIVE
  2. AlertActionStyle.NEGATIVE
  3. AlertActionStyle.DEFAULT

Themes

  1. AlertTheme.LIGHT
  2. AlertTheme.DARK

Set theme by

alert.setTheme(AlertTheme.DARK)

Default theme is LIGHT

Authors

Contribution

Pull requests are welcome! Feel free to browse through open issues to look for things that need work. If you have a feature request or bug, please open a new issue so i can track it.

Licence

Copyright 2018 Irozon, Inc.

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.
原文链接:http://p.codekk.com/detail/Android/Hamadakram/AlertView
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值