Android Dialog 实现仿iOS UIActionSheet

啊哈 补个GIF 感谢Coding_css的建议

actionsheet.gif

拍照、和相册设定为动态加载。。底部cancel设定为固定视图
<h2>首先看实际调用

   String[] arr={"拍照","相册"};
                    LD_DialogUtil.showActionSheet(this, arr, "取消", new LD_ActionSheet.Builder.OnActionSheetselectListener() {
                        @Override
                        public void itemSelect(Dialog dialog,int index) {
                            dialog.dismiss();
                        switch (index){
                            case 0://底部按钮
                              showToast("取消");
                                break;
                            case 1:
                                showToast("拍照");

                                break;
                            case 2:
                                showToast("相册");
                                break;
                        }
                        }
                    });

然后是调用方法,创建内部类Builder 然后构造LD_ActionSheet

    /**
     * UIActionSheet
     * @param context 上下文
     * @param items   要加载的按钮文字数组
     * @param cancel   底部按钮问题
     * @param listener  按钮点击监听
     */
    public static void  showActionSheet(Context context, String[] items, String cancel, LD_ActionSheet.Builder.OnActionSheetselectListener listener){
        LD_ActionSheet.Builder builder=new LD_ActionSheet.Builder(context);
        builder.setcancelString(cancel).setItems(items).setListner(listener);
        builder.create().show();
    }

再看自定义LD_ActionSheet.java 类


/**
 * Created by LiuDong on 2016/12/15.
 * Email:15002102128@126.com
 */

public class LD_ActionSheet extends Dialog {
    private View mContentView;
    public LD_ActionSheet(Context context) {
        super(context);

    }

    public LD_ActionSheet(Context context, int theme) {
        super(context, theme);

    }

    protected LD_ActionSheet(Context context, boolean cancelable, OnCancelListener cancelListener) {
        super(context, cancelable, cancelListener);

    }
    public  static class Builder{
        private Context context;
        private String[]  titleItems;//按钮问题数组
        private String  cancelTitle;//取消按钮文字
        private OnActionSheetselectListener listener;//按钮点击监听

        public Builder(Context context) {
            this.context = context;
        }

        /**
         * 设置显示数组
         * @param items
         * @return
         */

        public Builder setItems(String[] items){
            this.titleItems=items;
            return this;
        }

        /**
         * 设置取消按钮
         * @param cancel
         * @return
         */
        public  Builder setcancelString(String cancel){
            this.cancelTitle=cancel;
            return this;
        }

        /**
         * 设置按钮点击监听
         * @param listner
         * @return
         */
        public Builder setListner(OnActionSheetselectListener listner){
            this.listener=listner;
            return this;
        }

        /**
         * 创建ActionSheet
         * @return
         */
        public LD_ActionSheet create(){
            LayoutInflater inflater = (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            final View view =inflater.inflate(R.layout.ld_actionsheet,null);//布局解析
            LinearLayout llItem= (LinearLayout) view.findViewById(R.id.ll_items);
            final     LD_ActionSheet actionSheet= new  LD_ActionSheet(context,R.style.Dialog);//创建Dialog
            if (titleItems!=null){
                for (int i=0;i<titleItems.length;i++){//初始化操作按钮
                    final int position=i;
                    Button btn= (Button) inflater.inflate(R.layout.ld_actionsheet_item,null);
                    btn.setText(titleItems[i]);
                    btn.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View V) {
                            //消失动画
                                LD_AnimationUtil.translateDown(context, view, new LD_AnimationUtil.LD_AnimationListener() {
                                    @Override
                                    public void ld_AnimationFinish() {
                                        if (listener!=null)
                                            listener.itemSelect(actionSheet,position+1);//动画完成,监听点击
                                    }
                                });
   

                        }
                    });
                    LinearLayout.LayoutParams LayoutParams =new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
                    LayoutParams.setMargins(0,8,0,0);
                    btn.setLayoutParams(LayoutParams);
                    llItem.addView(btn);
                }
            }
            Button btnCancel= (Button) view.findViewById(R.id.actioncancel);
            if (cancelTitle!=null){
                btnCancel.setText(cancelTitle);//设置取消键文字  没放在for循环动态添加
            }

            btnCancel.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {

                    LD_AnimationUtil.translateDown(context, view, new LD_AnimationUtil.LD_AnimationListener() {
                        @Override
                        public void ld_AnimationFinish() {
                            if (listener!=null)
                                listener.itemSelect(actionSheet,0);
                        }
                    });
                }
            });

            actionSheet.getWindow().setGravity(Gravity.BOTTOM);
            Window window = actionSheet.getWindow();
            window.setGravity(Gravity.BOTTOM); //可设置dialog的位置
            window.getDecorView().setPadding(0, 0, 0, 0); //消除边距

            WindowManager.LayoutParams lp = window.getAttributes();
            lp.width = WindowManager.LayoutParams.MATCH_PARENT;   //设置宽度充满屏幕
            lp.height = WindowManager.LayoutParams.WRAP_CONTENT;
            window.setAttributes(lp);
            actionSheet.addContentView(view, new ViewGroup.LayoutParams(
                    ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));//添加ContentView
            actionSheet.setCancelable(false);

            actionSheet.setmContentView(view);//Dialog 保存ContentView 进入动画要用到 好像没有直接获取的方法??
            return  actionSheet;
        }
        public interface OnActionSheetselectListener {
            void  itemSelect(Dialog dialog,int index);
        }
    }
    //Dialog显示时执行动画
    @Override
    public void show() {
        super.show();
        LD_AnimationUtil.translateUp(getContext(),mContentView);
    }

    @Override
    public void dismiss() {
        super.dismiss();

    }
    //创建Dialog 时 保存ContentView
    public void setmContentView(View mContentView) {
        this.mContentView = mContentView;
    }
}

布局文件 ld_actionsheet.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:id="@+id/ll_items"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="@dimen/commonMiddlePadding"
        android:orientation="vertical">

    </LinearLayout>
    <Button
        android:id="@+id/actioncancel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="取消"
        android:padding="@dimen/commonPadding"
        android:background="@drawable/btn_white_bg"
        android:textSize="@dimen/textTileSize"
        android:textColor="@color/black"
        android:layout_marginRight="@dimen/commonMiddlePadding"
        android:layout_marginTop="@dimen/commonPadding"
        android:layout_marginBottom="@dimen/commonMiddlePadding"
        android:layout_marginLeft="@dimen/commonMiddlePadding"/>
</LinearLayout>

Dialog样式

 <style name="Dialog" parent="android:style/Theme.Dialog">
        <item name="android:background">#00000000</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
    </style>

用到的动画

/**
     * view show from the bottom up;
     * 
     * @param context
     * @param view
     */
    public static void translateUp(Context context, View view) {
    

        ObjectAnimator
                .ofFloat(view, "translationY", view.getMeasuredHeight(), 0)
                .setDuration(300).start();

    }

    /**
     * view dismiss from the top down;
     * 
     * @param context
     * @param view
     */
    public static void translateDown(Context context, View view,
            final LD_AnimationListener listener) {
        ObjectAnimator animator = ObjectAnimator.ofFloat(view, "translationY",
                0, view.getMeasuredHeight()).setDuration(300);
        animator.addListener(new AnimatorListener() {

            @Override
            public void onAnimationStart(Animator animation) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onAnimationRepeat(Animator animation) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onAnimationEnd(Animator animation) {
                if (listener != null) {
                    listener.ld_AnimationFinish();
                }

            }

            @Override
            public void onAnimationCancel(Animator animation) {
                // TODO Auto-generated method stub

            }
        });
        animator.start();

    }

按钮样式,这个感觉差点什么,我写个样式一般要三个xml文件
normal pressed shape 以及一个selector ,是不是可以整合在一起?

btn_white_normal_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
       <corners android:radius="@dimen/commonSmallPadding" >
    </corners>

    <solid android:color="@color/white" />

</shape>

btn_white_pressed_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <corners android:radius="@dimen/commonSmallPadding" >
    </corners>

    <solid android:color="@color/gray" />

</shape>

btn_white_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true" android:drawable="@drawable/btn_white_pressed_bg"></item>
    <item android:state_pressed="false" android:drawable="@drawable/btn_white_normal_bg"></item>

</selector>

我擦嘞,基本上是纯贴代码了,好尴尬啊。写这篇文章是有感,初期实现是用PopupWindow,再看 感觉代码封装性不是很好,于是参考网上的一些例子demo,重新整理撰写,哎 羡慕那些有大神带的。一路自己摸爬滚打到现在,心塞塞啊。
好了不闲扯了,希望对大家有点帮助

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容