工具篇——RoundCornerDialog(圆角的dialog)

写代码的四点:
     1.明确需求。要做什么?
     2.分析思路。要怎么做?(1,2,3……)
     3.确定步骤。每一个思路要用到哪些语句、方法和对象。
     4.代码实现。用具体的语言代码将思路实现出来。
 
学习新技术的四点:
     1.该技术是什么?
     2.该技术有什么特点?(使用需注意的方面)
     3.该技术怎么使用?(写Demo)
     4.该技术什么时候用?(在Project中的使用场景 )
 

----------------------早计划,早准备,早完成。-------------------------

代码如下:

package com.wy.test.other;

import android.app.Dialog;
import android.content.Context;
import android.view.Gravity;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;

/**
 * 圆角的dialog
 */
public class RoundCornerDialog extends Dialog {

    private static int default_width = 160; //默认宽度
    private static int default_height = 120;//默认高度

    public RoundCornerDialog(Context context, View layout, int style) {
        this(context, default_width, default_height, layout, style);
    }

    public RoundCornerDialog(Context context, int width, int height, View layout, int style) {
        super(context, style);
        setContentView(layout);
        Window window = getWindow();
        WindowManager.LayoutParams params = window.getAttributes();
        params.gravity = Gravity.CENTER;
        window.setAttributes(params);
    }

    //圆角的dialog样式,在values——》styles中设置
//    
}

在项目中的应用:

1.在values——》styles中设置style样式;


2.在drawable中定义shape_circle_corner_white文件(圆角的背景)



    
    
    
    
    

    
    

3.定义弹出的RoundCornerDialog的layout布局文件;




    

        

        

            

            

        

        

        
    

4.在activity中展示圆角的dialog

/**
 * 展示圆角的dialog
 */
private void showDialog() {
    View view = View.inflate(this, R.layout.dialog_two_btn, null);
    final RoundCornerDialog roundCornerDialog = new RoundCornerDialog(this, 0, 0, view, R.style.RoundCornerDialog);
    roundCornerDialog.show();
    roundCornerDialog.setCanceledOnTouchOutside(false);// 设置点击屏幕Dialog不消失
    roundCornerDialog.setOnKeyListener(keylistener);//设置点击返回键Dialog不消失

    TextView tv_message = (TextView) view.findViewById(R.id.tv_message);
    TextView tv_logout_confirm = (TextView) view.findViewById(R.id.tv_logout_confirm);
    TextView tv_logout_cancel = (TextView) view.findViewById(R.id.tv_logout_cancel);
    tv_message.setText("这是个圆角的dialog");

    //确定
    tv_logout_confirm.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            roundCornerDialog.dismiss();
        }
    });
    //取消
    tv_logout_cancel.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            roundCornerDialog.dismiss();
        }
    });
}

DialogInterface.OnKeyListener keylistener = new DialogInterface.OnKeyListener() {
    public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
            return true;
        } else {
            return false;
        }
    }
};

 

附:

详细使用Demo(https://blog.csdn.net/qq941263013/article/details/80901277)

---------------------------------------------------------------------------------------------------------------------------

早计划,早准备,早完成。 欢迎关注!交流!Star!

GitHub:https://github.com/wangyang0313

微信公众号:一个灵活的胖子MrWang

简书:https://www.jianshu.com/u/e5e733d79b96  

你可能感兴趣的:(Android工具篇,Android常用工具类,一个灵活的胖子的进击之路)