真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

android如何實現(xiàn)自定義Dialog彈框和背景陰影顯示效果

這篇文章主要為大家展示了android如何實現(xiàn)自定義Dialog彈框和背景陰影顯示效果,內(nèi)容簡而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

蘭州ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

android如何實現(xiàn)自定義Dialog彈框和背景陰影顯示效果

首先需要自定義一個類,繼承Dialog

import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;

import com.zhiziyun.dmptest.bot.R;

/**
 * Created by Administrator on 2018/1/31.
 */

public class CustomDialog extends Dialog {
 private Button yes, no;//確定按鈕
 private TextView titleTv;//消息標(biāo)題文本
 private TextView messageTv;//消息提示文本
 private String titleStr;//從外界設(shè)置的title文本
 private String messageStr;//從外界設(shè)置的消息文本
 //確定文本和取消文本的顯示內(nèi)容
 private String yesStr, noStr;

 private onNoOnclickListener noOnclickListener;//取消按鈕被點擊了的監(jiān)聽器
 private onYesOnclickListener yesOnclickListener;//確定按鈕被點擊了的監(jiān)聽器

 /**
  * 設(shè)置取消按鈕的顯示內(nèi)容和監(jiān)聽
  *
  * @param str
  * @param onNoOnclickListener
  */
 public void setNoOnclickListener(String str, onNoOnclickListener onNoOnclickListener) {
  if (str != null) {
   noStr = str;
  }
  this.noOnclickListener = onNoOnclickListener;
 }

 /**
  * 設(shè)置確定按鈕的顯示內(nèi)容和監(jiān)聽
  *
  * @param str
  * @param onYesOnclickListener
  */
 public void setYesOnclickListener(String str, onYesOnclickListener onYesOnclickListener) {
  if (str != null) {
   yesStr = str;
  }
  this.yesOnclickListener = onYesOnclickListener;
 }

 public CustomDialog(Context context) {
  super(context, R.style.Dialog_Msg);
 }

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.dialog_custom);
  //按空白處不能取消動畫
  setCanceledOnTouchOutside(false);

  //初始化界面控件
  initView();
  //初始化界面數(shù)據(jù)
  initData();
  //初始化界面控件的事件
  initEvent();

 }

 /**
  * 初始化界面的確定和取消監(jiān)聽器
  */
 private void initEvent() {
  //設(shè)置確定按鈕被點擊后,向外界提供監(jiān)聽
  yes.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    if (yesOnclickListener != null) {
     yesOnclickListener.onYesClick();
    }
   }
  });

  no.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    if (noOnclickListener != null) {
     noOnclickListener.onNoClick();
    }
   }
  });
 }

 /**
  * 初始化界面控件的顯示數(shù)據(jù)
  */
 private void initData() {
  //如果用戶自定了title和message
  if (titleStr != null) {
   titleTv.setText(titleStr);
  }
  if (messageStr != null) {
   messageTv.setText(messageStr);
  }
  //如果設(shè)置按鈕的文字
  if (yesStr != null) {
   yes.setText(yesStr);
  }
 }

 /**
  * 初始化界面控件
  */
 private void initView() {
  yes = (Button) findViewById(R.id.yes);
  no = (Button) findViewById(R.id.no);
  titleTv = (TextView) findViewById(R.id.title);
  messageTv = (TextView) findViewById(R.id.message);
 }

 /**
  * 從外界Activity為Dialog設(shè)置標(biāo)題
  *
  * @param title
  */
 public void setTitle(String title) {
  titleStr = title;
 }

 /**
  * 從外界Activity為Dialog設(shè)置dialog的message
  *
  * @param message
  */
 public void setMessage(String message) {
  messageStr = message;
 }

 /**
  * 設(shè)置確定按鈕和取消被點擊的接口
  */
 public interface onYesOnclickListener {
  public void onYesClick();
 }

 public interface onNoOnclickListener {
  public void onNoClick();
 }

 @Override
 public void show() {
  super.show();
  /**
   * 設(shè)置寬度全屏,要設(shè)置在show的后面
   */
  WindowManager.LayoutParams layoutParams = getWindow().getAttributes();
  layoutParams.width= ViewGroup.LayoutParams.MATCH_PARENT;
  layoutParams.height= ViewGroup.LayoutParams.MATCH_PARENT;
  getWindow().getDecorView().setPadding(0, 0, 0, 0);
  getWindow().setAttributes(layoutParams);
 }
}

這是實體類中的style:

其中@color/transparent是一個透明色

#00000000

然后是布局

<?xml version="1.0" encoding="utf-8"?>


 

  

  

  

  

   

下面是shape_dialog_msg的代碼

<?xml version="1.0" encoding="UTF-8"?>

 
  
   
   
   
   
   
   
   
  
 

準備工作都做好了,下面就是如何使用了

//點擊彈出對話框
  final CustomDialog customDialog = new CustomDialog(getActivity());
  customDialog.setTitle("消息提示");
  customDialog.setMessage("是否暫停廣告投放?");
  customDialog.setYesOnclickListener("確定", new CustomDialog.onYesOnclickListener() {
    @Override
    public void onYesClick() {
    //這里是確定的邏輯代碼,別忘了點擊確定后關(guān)閉對話框
    customDialog.dismiss();
    }
  });
 customDialog.setNoOnclickListener("取消", new CustomDialog.onNoOnclickListener() {
@Override
  public void onNoClick() {
   customDialog.dismiss();
    }
   });
 customDialog.show();

以上就是關(guān)于android如何實現(xiàn)自定義Dialog彈框和背景陰影顯示效果的內(nèi)容,如果你們有學(xué)習(xí)到知識或者技能,可以把它分享出去讓更多的人看到。


本文標(biāo)題:android如何實現(xiàn)自定義Dialog彈框和背景陰影顯示效果
URL標(biāo)題:http://weahome.cn/article/pcsodo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部