模仿IOS里面的UIActionSheet控件

模仿IOS里面的UIActionSheet控件,有IOS6和IOS7两种风格,可以自定义风格,背景图片、按钮图片、文字颜色、间距等。

    Screenshot

使用方法

创建一个ActionSheet并显示

new ActionSheet.Builder(this, getSupportFragmentManager())
                .setCancelButtonTitle("Cancel")
                .setOtherButtonTitles("Item1", "Item2", "Item3", "Item4")
                .setListener(this).show();

事件监听

实现ActionSheetListener接口

   @Override
    public void onCancelButtonClick(ActionSheet actionSheet) {
        Toast.makeText(getApplicationContext(), "click cancel", 0).show();
    }

    @Override
    public void onOtherButtonClick(ActionSheet actionSheet, int index) {
        Toast.makeText(getApplicationContext(), "click item index = " + index,
                0).show();
    }

样式

默认的样式非常丑陋,项目中提供了两种Style,可以配置Theme


     name="AppTheme" parent="AppBaseTheme">
         name="actionSheetStyle">@style/ActionSheetStyleIOS6
        or
         name="actionSheetStyle">@style/ActionSheetStyleIOS7
    

还可以自定义样式,自定义一个style即可,可以参考ActionSheetStyleIOS6/ActionSheetStyleIOS7的写法

 
  name="ActionSheetStyleIOS7">
         name="actionSheetBackground">@android:color/transparent
         name="cancelButtonBackground">@drawable/slt_as_ios7_cancel_bt
         name="otherButtonTopBackground">@drawable/slt_as_ios7_other_bt_top
         name="otherButtonMiddleBackground">@drawable/slt_as_ios7_other_bt_middle
         name="otherButtonBottomBackground">@drawable/slt_as_ios7_other_bt_bottom
         name="otherButtonSingleBackground">@drawable/slt_as_ios7_other_bt_single
         name="cancelButtonTextColor">#1E82FF
         name="otherButtonTextColor">#1E82FF
         name="actionSheetPadding">10dp
         name="otherButtonSpacing">0dp
         name="cancelButtonMarginTop">10dp
         name="actionSheetTextSize">12sp
    

Style属性介绍

  • actionSheetBackground 背景
  • cancelButtonBackground 取消按钮背景
  • otherButtonTopBackground 选项顶部按钮背景
  • otherButtonMiddleBackground 选项中部按钮背景
  • otherButtonBottomBackground 选项底部按钮背景
  • otherButtonSingleBackground 选项只有一个的按钮背景
  • cancelButtonTextColor 取消按钮的文字颜色
  • otherButtonTextColor 选项按钮的文字颜色
  • actionSheetPadding 内边距
  • otherButtonSpacing 选项按钮的间距
  • cancelButtonMarginTop 取消按钮顶部间距
  • actionSheetTextSize 选项按钮文字颜色

你可能感兴趣的:(Android)