仿写从iOS8开始支持的UIAlertController:BGAAlertController-Android
                 jopen
                 10年前
            
                    工作以来公司UI设计师出的Android效果图都是iOS风格的UIAlertView和UIActionSheet,新项目还是用原来那一套,不想重复造轮子,所以仿写了从iOS8开始支持的UIAlertController,统一UIAlertView和UIActionSheet的用法
目前还不支持添加EditText,后续会支持
效果图
基本使用
1.添加Gradle依赖
dependencies {      compile 'cn.bingoogolapple:bga-alertcontroller:latestVersion@aar' }2.在java代码中使用BGAAlertController
public void showAlertView(View v) {      BGAAlertController alertController = new BGAAlertController(this, "我是标题", "我是很长很长很长很长很长很长很长很长很长很长很长很长的消息", BGAAlertController.AlertControllerStyle.Alert);      // 不管添加顺序怎样,AlertActionStyle.Cancel始终是在最底部的,AlertActionStyle.Default和AlertActionStyle.Destructive按添加的先后顺序显示      alertController.addAction(new BGAAlertAction("取消", BGAAlertAction.AlertActionStyle.Cancel, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了取消");          }      }));      alertController.addAction(new BGAAlertAction("其他1", BGAAlertAction.AlertActionStyle.Default, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了其他1");          }      }));      alertController.addAction(new BGAAlertAction("其他2", BGAAlertAction.AlertActionStyle.Default, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了其他2");          }      }));      alertController.addAction(new BGAAlertAction("确定", BGAAlertAction.AlertActionStyle.Destructive, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了确定");          }      }));      alertController.show();  }    public void showActionSheet(View v) {      BGAAlertController alertController = new BGAAlertController(this, "我是标题", "我是很长很长很长很长很长很长很长很长很长很长很长很长的消息", BGAAlertController.AlertControllerStyle.ActionSheet);      // 不管添加顺序怎样,AlertActionStyle.Cancel始终是在最底部的,AlertActionStyle.Default和AlertActionStyle.Destructive按添加的先后顺序显示      alertController.addAction(new BGAAlertAction("取消", BGAAlertAction.AlertActionStyle.Cancel, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了取消");          }      }));      alertController.addAction(new BGAAlertAction("其他1", BGAAlertAction.AlertActionStyle.Default, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了其他1");          }      }));      alertController.addAction(new BGAAlertAction("其他2", BGAAlertAction.AlertActionStyle.Default, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了其他2");          }      }));      alertController.addAction(new BGAAlertAction("确定", BGAAlertAction.AlertActionStyle.Destructive, new BGAAlertAction.Delegate() {          @Override          public void onClick() {              showToast("点击了确定");          }      }));      alertController.show();  }高级用法
1.如果您不满意默认的颜色,在自己项目的colors.xml中定义以下相应地颜色即可(不用全部定义,对不满意的值重新定义即可)
<resources> <color name="ac_bg_translucent">#80808080</color> <color name="ac_bg_content">#F9F9F9</color> <color name="ac_item_text_default">#007AFF</color> <color name="ac_item_text_destructive">#FF3B30</color> <color name="ac_item_bg_pressed">#EBEBEB</color> <color name="ac_alert_title">#000000</color> <color name="ac_alert_message">#000000</color> <color name="ac_action_sheet_title">#929292</color> <color name="ac_action_sheet_message">#929292</color> </resources>
2.如果您不满意默认的间距和字体大小,在自己项目的colors.xml中定义以下相应的dimen(不用全部定义,对不满意的值重新定义即可)
<resources> <dimen name="ac_radius">10dp</dimen> <dimen name="ac_gap">10dp</dimen> <dimen name="ac_line_height">1dp</dimen> <dimen name="ac_item_text_size">18sp</dimen> <dimen name="ac_action_sheet_text_size_title">14sp</dimen> <dimen name="ac_action_sheet_text_size_message">14sp</dimen> <dimen name="ac_alert_text_size_title">18sp</dimen> <dimen name="ac_alert_text_size_message">14sp</dimen> </resources>
https://github.com/bingoogolapple/BGAAlertController-Android