最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android自定義Dialog實(shí)現(xiàn)通用圓角對(duì)話框

 更新時(shí)間:2021年11月14日 12:58:10   作者:ruancw  
這篇文章主要為大家詳細(xì)介紹了Android自定義Dialog實(shí)現(xiàn)通用圓角對(duì)話框,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

前言:圓角對(duì)話框在項(xiàng)目中用的越來(lái)越多,之前一篇文章有介紹過(guò)使用系統(tǒng)的AlertDialog+CardView(Android中使用CardView實(shí)現(xiàn)圓角對(duì)話框)實(shí)現(xiàn)了圓角對(duì)話框的樣式,今天介紹自定義Dialog實(shí)現(xiàn)通用的圓角對(duì)話框。

效果圖:

1.繼承自AlertDialog,重寫(xiě)onCreat

/**
 * Created by ruancw on 2018/6/7.
 * 自定義的帶圓角的對(duì)話框
 */

public class RoundCornerDialog extends AlertDialog{

  private TextView tvTitle;
  private TextView tvDes;
  private TextView tvCancel;
  private TextView tvConfirm;
  //private Context context;

  /**
   * 一個(gè)參數(shù)的構(gòu)造方法
   * @param context 上下文對(duì)象
   */
  public RoundCornerDialog(@NonNull Context context) {
    super(context);
    //this.context=context;
  }

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.dialog_layout_test);
    //設(shè)置背景透明,不然會(huì)出現(xiàn)白色直角問(wèn)題
    Window window = getWindow();
    window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    setCanceledOnTouchOutside(false);
    //初始化布局控件
    initView();
    //確定和取消按鈕的事件監(jiān)聽(tīng)
    initEvent();
    //設(shè)置參數(shù)必須在show之后,不然沒(méi)有效果
    WindowManager.LayoutParams params = getWindow().getAttributes();
    getWindow().setAttributes(params);
  }

}

注:解決白色直角的問(wèn)題

(1)文中沒(méi)有使用style設(shè)置背景透明,直接在代碼中用的window.setBackgroundDrawable設(shè)置的背景透明,不然會(huì)出現(xiàn)遺留的四個(gè)角有白色直角的問(wèn)題。

(2)當(dāng)然也可以在構(gòu)造方法中這樣設(shè)置:super(context,R.style.CustomDialog)。

2.初始化布局

(1)布局文件(CradView實(shí)現(xiàn)圓角布局)

<android.support.v7.widget.CardView 
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="@dimen/dp_30"
  app:cardCornerRadius="@dimen/dp_10">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/bg_mainWhite"
    android:orientation="vertical">

    <TextView
      android:id="@+id/tv_title"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="@dimen/dp_10"
      android:text="溫馨提示"
      android:textColor="@color/bg_mainWhite"
      android:textSize="@dimen/sp_18" />

    <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/bg_line" />

    <TextView
      android:id="@+id/tv_des"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:padding="@dimen/dp_20"
      android:textSize="@dimen/sp_18" />

    <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/bg_line" />

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="@dimen/dp_48"
      android:orientation="horizontal">

      <TextView
        android:id="@+id/tv_cancel"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:gravity="center"
        android:text="取消"
        android:textSize="@dimen/sp_16" />

      <View
        android:layout_width="1dp"
        android:layout_height="match_parent"
        android:background="@color/bg_line" />

      <TextView
        android:id="@+id/tv_confirm"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:gravity="center"
        android:text="確定"
        android:textSize="@dimen/sp_16" />
    </LinearLayout>
  </LinearLayout>

</android.support.v7.widget.CardView>

(2)初始化布局文件及設(shè)置參數(shù)

/**
 * 初始化布局文件及設(shè)置參數(shù)
 */
private void initView() {
  //對(duì)話框標(biāo)題
  tvTitle=findViewById(R.id.tv_title);
  //對(duì)話框描述信息
  tvDes=findViewById(R.id.tv_des);
  //確定按鈕和取消
  tvConfirm=findViewById(R.id.tv_confirm);
  tvCancel=findViewById(R.id.tv_cancel);
  
}

(3)設(shè)置事件監(jiān)聽(tīng)

讓自定義的dialog實(shí)現(xiàn)OnClickListener接口,然后設(shè)置確定及取消按鈕的事件監(jiān)聽(tīng)

/**
 * 確定及取消點(diǎn)擊事件
 */
private void initEvent() {
  tvConfirm.setOnClickListener(this);//確定
  tvCancel.setOnClickListener(this);//取消@Override
public void onClick(View view) {
  switch (view.getId()){
    case R.id.tv_confirm:
      dismiss();
      break;
    case R.id.tv_cancel:
      dismiss();
      break;
  }
}

寫(xiě)到這里,圓角對(duì)話框就實(shí)現(xiàn)了,但如果另一個(gè)頁(yè)面要求不同背景色,按鈕的文本也不是“確定”和“取消”呢,我們是不是又的重寫(xiě)定義dialog和設(shè)置布局文件呢,顯然這樣很麻煩,貌似與我們的標(biāo)題寫(xiě)的通用的圓角對(duì)話框也不相符啊,這似乎不太好吧。接下來(lái),我們進(jìn)行一番改造,打造通用的圓角對(duì)話框。

3.打造通用圓角對(duì)話框

(1)initView中設(shè)置初始參數(shù)

private String title="溫馨提示",message,confirmText="確定",cancelText="取消";
//默認(rèn)的標(biāo)題欄背景色
private int titleColorBg=Color.parseColor("#FF8200");
//默認(rèn)的確定和取消按鈕背景色
private int confirmColorBg=Color.parseColor("#F8F8F8");
private int cancelColorBg=Color.parseColor("#F8F8F8");
/**
 * 初始化布局文件及設(shè)置參數(shù)
 */
private void initView() {
  //對(duì)話框標(biāo)題
  tvTitle=findViewById(R.id.tv_title);
  //對(duì)話框描述信息
  tvDes=findViewById(R.id.tv_des);
  //確定按鈕和取消
  tvConfirm=findViewById(R.id.tv_confirm);
  tvCancel=findViewById(R.id.tv_cancel);
 /********************通用設(shè)置*********************/
  //設(shè)置標(biāo)題、描述及確定按鈕的文本內(nèi)容
  tvTitle.setText(title);
  tvDes.setText(message);
  tvConfirm.setText(confirmText);
  //設(shè)置標(biāo)題欄及確定、取消按鈕背景色
  tvTitle.setBackgroundColor(titleColorBg);
  tvConfirm.setBackgroundColor(confirmColorBg);
  tvCancel.setBackgroundColor(cancelColorBg);
}

(2)定義設(shè)置屬性方法

/**
 * 設(shè)置標(biāo)題欄文本
 * @param title 標(biāo)題
 */
public void setTitle(String title){
  this.title=title;
}

/**
 * 設(shè)置描述信息
 * @param message 描述信息
 */
public void setMessage(String message){
  this.message=message;
}

/**
 * 設(shè)置確定按鈕上的文本
 * @param confirmText 文本
 */
public void setConfirmText(String confirmText){
  this.confirmText=confirmText;
}

/**
 * 設(shè)置取消按鈕上的文本
 * @param cancelText 文本
 */
public void setCancelText(String cancelText){
  this.cancelText=cancelText;
}

/**
 * 設(shè)置標(biāo)題欄的背景
 * @param titleColorBg 背景色int
 */
public void setTitleBg(int titleColorBg){
  this.titleColorBg=titleColorBg;
}

/**
 * 確定按鈕背景色
 * @param confirmColorBg int背景色
 */
public void setConfirmBg(int confirmColorBg){
  this.confirmColorBg=confirmColorBg;
}

/**
 * 取消按鈕背景色
 * @param cancelColorBg int背景色
 */
public void setCancelBg(int cancelColorBg){
  this.cancelColorBg=cancelColorBg;
}

(3)定義接口,實(shí)現(xiàn)確定按鈕的點(diǎn)擊回調(diào)

private ConfirmListener confirmListener;

/**
 * 設(shè)置確定按鈕的監(jiān)聽(tīng)
 * @param confirmListener
 */
public void setConfirmListener(ConfirmListener confirmListener){
  this.confirmListener=confirmListener;
}

/**
 * 確定按鈕點(diǎn)擊的監(jiān)聽(tīng)接口
 */
public interface ConfirmListener{
  void onConfirmClick();
}

點(diǎn)擊“確定”回調(diào)方法

case R.id.tv_confirm:
  /************通用設(shè)置***********/
  //點(diǎn)擊確定按鈕回調(diào)
  confirmListener.onConfirmClick();
  dismiss();
  break;

一般點(diǎn)擊“取消”按鈕不做任何操作,只是關(guān)閉當(dāng)前彈出的對(duì)話框,所以這里不做點(diǎn)擊后回調(diào),當(dāng)然,點(diǎn)擊“確定”后執(zhí)行相關(guān)操作后也要關(guān)閉當(dāng)前dialog。

4.使用

RoundCornerDialog roundCornerDialog=new RoundCornerDialog(mContext);
//設(shè)置標(biāo)題,描述,文本等參數(shù)
roundCornerDialog.setTitle("溫馨提示");
roundCornerDialog.setMessage("退出當(dāng)前登錄后將要重新登錄!");
roundCornerDialog.setConfirmText("確認(rèn)退出");
//確定按鈕的點(diǎn)擊回調(diào)方法
roundCornerDialog.setConfirmListener(new roundCornerDialog.ConfirmListener() {
  @Override
  public void onConfirmClick() {
    Intent intent = new Intent(mContext, LoginActivity.class);
    startActivity(intent);
    UIUtil.toast("退出成功,請(qǐng)重新登錄");
    getActivity().finish();
  }
});
//顯示對(duì)話框
roundCornerDialog.show();

總結(jié):本文通過(guò)自定義Dialog+CardView的方式實(shí)現(xiàn)了通用的圓角對(duì)話框效果,使用也相對(duì)簡(jiǎn)單,測(cè)試中發(fā)現(xiàn)在Android5.0以下設(shè)置標(biāo)題欄背景色時(shí),標(biāo)題欄不會(huì)跟隨CardView的圓角。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 解析ADT-20問(wèn)題 android support library

    解析ADT-20問(wèn)題 android support library

    本篇文章是對(duì)ADT-20問(wèn)題 android support library進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • Android開(kāi)發(fā)實(shí)現(xiàn)從相冊(cè)中選擇照片功能詳解

    Android開(kāi)發(fā)實(shí)現(xiàn)從相冊(cè)中選擇照片功能詳解

    這篇文章主要介紹了Android開(kāi)發(fā)實(shí)現(xiàn)從相冊(cè)中選擇照片功能,涉及Android權(quán)限控制、事件綁定、文件路徑與獲取等相關(guān)操作技巧,需要的朋友可以參考下
    2019-03-03
  • Android 多種dialog的實(shí)現(xiàn)方法(推薦)

    Android 多種dialog的實(shí)現(xiàn)方法(推薦)

    下面小編就為大家分享一篇Android 多種dialog的實(shí)現(xiàn)方法(推薦),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2018-01-01
  • fragment實(shí)現(xiàn)隱藏及界面切換效果

    fragment實(shí)現(xiàn)隱藏及界面切換效果

    這篇文章主要為大家詳細(xì)介紹了fragment實(shí)現(xiàn)隱藏及界面切換效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-11-11
  • 淺談Android性能優(yōu)化之內(nèi)存優(yōu)化

    淺談Android性能優(yōu)化之內(nèi)存優(yōu)化

    Android的內(nèi)存優(yōu)化是性能優(yōu)化中很重要的一部分,本文將詳細(xì)介紹Android性能優(yōu)化之內(nèi)存優(yōu)化。
    2021-06-06
  • 圖文詳解自定義View視圖的屬性及引用

    圖文詳解自定義View視圖的屬性及引用

    這篇文章主要介紹了圖文詳解自定義View視圖的屬性及引用,由于Android自帶的視圖無(wú)法滿足自己需求,又或者美觀度不夠自己的要求,我們就要自來(lái)親自設(shè)計(jì)自己的視圖,需要的朋友可以參考下
    2023-04-04
  • 基于flutter?sound插件實(shí)現(xiàn)錄音與播放功能

    基于flutter?sound插件實(shí)現(xiàn)錄音與播放功能

    這篇文章主要介紹了基于flutter?sound插件實(shí)現(xiàn)錄音與播放功能,介紹了如何錄音,如何播放本地和遠(yuǎn)程音頻文件,以及如何實(shí)現(xiàn)動(dòng)畫(huà),在錄制完音頻文件后如何上傳,這些都是我們平常使用這個(gè)功能會(huì)遇到的問(wèn)題。在使用的過(guò)程中遇到的問(wèn)題也有列出,需要的朋友可以參考下
    2022-05-05
  • Android RecyclerView實(shí)現(xiàn)下拉刷新和上拉加載更多

    Android RecyclerView實(shí)現(xiàn)下拉刷新和上拉加載更多

    這篇文章主要為大家詳細(xì)介紹了Android RecyclerView實(shí)現(xiàn)下拉刷新和上拉加載更多,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-02-02
  • android控件Spinner(下拉列表)的使用例子

    android控件Spinner(下拉列表)的使用例子

    這篇文章主要給大家介紹了關(guān)于android控件Spinner(下拉列表)的使用例子,在Android開(kāi)發(fā)中下拉框(Spinner)是常用的UI控件之一,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2023-11-11
  • android實(shí)現(xiàn)下拉菜單三級(jí)聯(lián)動(dòng)

    android實(shí)現(xiàn)下拉菜單三級(jí)聯(lián)動(dòng)

    這篇文章主要為大家詳細(xì)介紹了android實(shí)現(xiàn)下拉菜單三級(jí)聯(lián)動(dòng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-10-10

最新評(píng)論

兴隆县| 凤台县| 达州市| 成安县| 武胜县| 宁远县| 翁牛特旗| 赤城县| 海安县| 罗源县| 鄂托克旗| 阳泉市| 南涧| 安国市| 泌阳县| 日照市| 缙云县| 凤阳县| 太仓市| 丘北县| 商城县| 丰城市| 屏边| 铁岭市| 玛曲县| 邵武市| 乌审旗| 固始县| 阳山县| 普安县| 孟村| 教育| 陆川县| 杂多县| 定州市| 金华市| 遂川县| 铜鼓县| 蓝田县| 浠水县| 东乌珠穆沁旗|