91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android應用中自定義dialog

發布時間:2020-11-27 17:08:01 來源:億速云 閱讀:169 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關怎么在Android應用中自定義dialog,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

Android 自定義dialog

要點:

1、設置自定義dialog的布局文件my_dialog.xml
2、設置一份自定義的樣式文件styles_wx.xml,該文件用于覆蓋Android的默認主題樣式,如黑色邊框等。
3、Java代碼繼承Dialog實現自定義類MyDialog,實現自定義布局,還有設置窗口的大小、位置等。

代碼

Part1.styles_wx.xml

<?xml version="1.0" encoding="utf-8"?> 
<resources xmlns:android="http://schemas.android.com/apk/res/android"> 
 
  <!-- 微信彈窗 --> 
  <style name="wx_dialog" parent="@android:style/Theme.Dialog"> 
    <item name="android:windowFrame">@null</item> <!-- 邊框 --> 
    <item name="android:windowIsFloating">true</item> <!-- 是否浮現在activity之上 --> 
    <item name="android:windowIsTranslucent">false</item> <!-- 半透明 --> 
    <item name="android:windowNoTitle">true</item> <!-- 無標題 --> 
    <item name="android:windowBackground">@drawable/transparent</item> <!-- 自己想要的背景 --> 
    <item name="android:backgroundDimEnabled">true</item> <!-- 背景內容模糊 --> 
  </style> 
 
</resources>

注意,此處:

<item name="android:windowBackground">@drawable/transparent</item>

這是設置對話框彈出背景,嘗試設置@null,仍然是黑色背景,在使用半透明圖片時會受其影響。

所以,可以在這里指定你想要的背景圖片或者顏色。

我為了靈活性,我設置該屬性為名為"transparent"的圖片,這是一張1*1的透明圖片。這樣背景完全透明,真正使用的背景在my_dialog.xml里定義

Part2.my_dialog.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:background="@drawable/frame_white" 
  android:orientation="vertical" 
  android:padding="15dp" > 
 
  <TextView 
    android:id="@+id/tvTitle" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/systitle" 
    android:textSize="18sp" /> 
 
 
  <!-- 分隔符用 --> 
 
  <TextView 
    android:id="@+id/tvSeparator" 
     
    android:layout_marginBottom="5dp" 
    android:layout_marginTop="5dp" /> 
 
  <TextView 
    android:id="@+id/tvText" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/sysText" 
    android:textSize="18sp" /> 
 
  <!-- 該RelativeLayout作為子視圖容器 --> 
 
  <RelativeLayout 
    android:id="@+id/rlContent" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 
  </RelativeLayout> 
 
  <RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginTop="10dp" 
    android:orientation="horizontal" > 
 
    <TextView 
      android:id="@+id/tvButton2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" 
      android:layout_marginLeft="10dp" 
      android:background="@drawable/selector_text_button" 
      android:clickable="true" 
      android:paddingBottom="5dp" 
      android:paddingLeft="15dp" 
      android:paddingRight="15dp" 
      android:paddingTop="5dp" 
      android:text="@string/ok" 
      android:textColor="@color/wx_text_link" 
      android:textSize="14sp" 
      android:visibility="visible" /> 
 
    <TextView 
      android:id="@+id/tvButton1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignWithParentIfMissing="true" 
      android:layout_marginLeft="10dp" 
      android:layout_toLeftOf="@id/tvButton2" 
      android:background="@drawable/selector_text_button" 
      android:clickable="true" 
      android:paddingBottom="5dp" 
      android:paddingLeft="15dp" 
      android:paddingRight="15dp" 
      android:paddingTop="5dp" 
      android:text="@string/cancel" 
      android:textColor="@color/wx_text_link" 
      android:textSize="14sp" /> 
  </RelativeLayout> 
 
</LinearLayout>

Part3.MyDialog.java

package com.kwws; 
 
import android.app.Dialog; 
import android.content.Context; 
import android.os.Bundle; 
import android.util.DisplayMetrics; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.Window; 
import android.view.WindowManager; 
import android.widget.RelativeLayout; 
import android.widget.TextView; 
 
import com.navigator.R; 
 
/** 
 * 自定義對話框 
 * 
 * @author Kangwei 
 * 
 */ 
public class MyDialog extends Dialog { 
 
  /* 屬性 */ 
 
  // 數據 
  String title = "title"; 
  String text = "text"; 
  String cancelButtonText = "cancel"; 
  String okButtonText = "ok"; 
  int okColor = -1; 
  int cancelColor = -1; 
 
  // UI 
  Context mContent; 
  TextView tvTitle; 
  TextView tvSeparator; 
  TextView tvText; 
  TextView tvBtn1; 
  TextView tvBtn2; 
  RelativeLayout childViewWrapper;// 子組件容器 
 
  /** 
   * 設置對話框樣式,設置null則不顯示 
   * 
   * @param context 
   *      上下文 
   * @param title 
   *      標題 
   * @param text 
   *      文本 
   * @param cancelButtonText 
   *      取消按鈕文本 
   * @param okButtonText 
   *      確認按鈕文本 
   */ 
  public MyDialog(Context context, String title, String text, 
      String cancelButtonText, String okButtonText) { 
    super(context, R.style.wx_dialog);// 樣式定義,該樣式去除android默認的黑色背景邊框等。 
    this.mContent = context; 
    setDialogStyle(title, text, cancelButtonText, okButtonText); 
  } 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    // TODO Auto-generated method stub 
    super.onCreate(savedInstanceState); 
    LayoutInflater layout = LayoutInflater.from(mContent); 
    View view = layout.inflate(R.layout.my_dialog, null); 
    setContentView(view); 
    findView(); 
    initView(); 
    initViewEvent(); 
  } 
 
  private void setDialogStyle(String title, String text, 
      String cancelButtonText, String okButtonText) { 
    this.title = title; 
    this.text = text; 
    this.cancelButtonText = cancelButtonText; 
    this.okButtonText = okButtonText; 
  } 
 
  private void findView() { 
    tvTitle = (TextView) findViewById(R.id.tvTitle); 
    tvSeparator = (TextView) findViewById(R.id.tvSeparator); 
    tvText = (TextView) findViewById(R.id.tvText); 
    tvBtn1 = (TextView) findViewById(R.id.tvButton1); 
    tvBtn2 = (TextView) findViewById(R.id.tvButton2); 
    childViewWrapper = (RelativeLayout) findViewById(R.id.rlContent); 
  } 
 
  private void initView() { 
    if (title == null) { 
      tvTitle.setVisibility(View.GONE); 
      tvSeparator.setVisibility(View.GONE); 
    } else { 
      tvTitle.setVisibility(View.VISIBLE); 
      tvSeparator.setVisibility(View.VISIBLE); 
      tvTitle.setText(title); 
    } 
    if (text == null) { 
      tvText.setVisibility(View.GONE); 
    } else { 
      tvText.setVisibility(View.VISIBLE); 
      tvText.setText(text); 
    } 
    if (cancelButtonText == null) { 
      tvBtn1.setVisibility(View.GONE); 
    } else { 
      tvBtn1.setVisibility(View.VISIBLE); 
      tvBtn1.setText(cancelButtonText); 
      if (cancelColor != -1) { 
        tvBtn1.setTextColor(cancelColor); 
      } 
    } 
    if (okButtonText == null) { 
      tvBtn2.setVisibility(View.GONE); 
    } else { 
      tvBtn2.setVisibility(View.VISIBLE); 
      tvBtn2.setText(okButtonText); 
      if (okColor != -1) { 
        tvBtn2.setTextColor(okColor); 
      } 
    } 
 
    if (childViewWrapper != null && childView != null) { 
      childViewWrapper.addView(childView); 
    } 
 
    // 設置對話框大小 
    Window dialogWindow = getWindow(); 
    WindowManager.LayoutParams lp = dialogWindow.getAttributes(); 
    DisplayMetrics d = mContent.getResources().getDisplayMetrics(); 
    // 獲取屏幕寬、高用 
    lp.width = (int) (d.widthPixels * 0.8); // 高度設置為屏幕的0.8 
    dialogWindow.setAttributes(lp); 
  } 
 
  private void initViewEvent() { 
    View.OnClickListener listener = new View.OnClickListener() { 
 
      @Override 
      public void onClick(View v) { 
        // TODO Auto-generated method stub 
        switch (v.getId()) { 
        case R.id.tvButton1: 
          if (mListener != null) { 
            mListener.onCancelButtonClick(MyDialog.this, v); 
          } 
          break; 
        case R.id.tvButton2: 
          if (mListener != null) { 
            mListener.onOKButtonClick(MyDialog.this, v); 
          } 
          break; 
        default: 
          break; 
        } 
      } 
    }; 
    tvBtn1.setOnClickListener(listener); 
    tvBtn2.setOnClickListener(listener); 
  } 
 
  public interface OnDialogButtonClickListener { 
    void onCancelButtonClick(MyDialog dialog, View view); 
 
    void onOKButtonClick(MyDialog dialog, View view); 
  } 
 
  private OnDialogButtonClickListener mListener; 
 
  /** 
   * 對話框按鈕監聽 
   * 
   * @param listener 
   */ 
  public void setOnDialogButtonClickListener( 
      OnDialogButtonClickListener listener) { 
    this.mListener = listener; 
  } 
 
  /** 
   * 確定按鈕文本顏色 
   * 
   * @param color 
   */ 
  public void setOKButtonTextColor(int color) { 
    this.okColor = color; 
  } 
 
  /** 
   * 取消按鈕文本顏色 
   * 
   * @param color 
   */ 
  public void setCancelButtonTextColor(int color) { 
    this.cancelColor = color; 
  } 
 
  View childView; 
 
  /** 
   * 在對話框顯示自定義視圖 
   */ 
  public void setChildView(View view) { 
    childView = view; 
  } 
}

Part4.使用

// 退出提示框 
public void exitDialog() { 
 
  MyDialog dialog = new MyDialog(this, "提示", "確認退出?", "取消", "退出"); 
  dialog.setOKButtonTextColor(getResources().getColor(R.color.red)); 
  dialog.setOnDialogButtonClickListener(new OnDialogButtonClickListener() { 
 
    @Override 
    public void onOKButtonClick(MyDialog dialog, View view) { 
      finish(); 
    } 
 
    @Override 
    public void onCancelButtonClick(MyDialog dialog, View view) { 
      dialog.dismiss(); 
    } 
  }); 
  dialog.show(); 
}
/* 
   * 顯示配置對話框 
   */ 
  private void showConfigDialog() { 
    // 讀取參數 
    final SharedPreferencesHelper helper = new SharedPreferencesHelper( 
        this, "config"); 
    final String ip = helper.getValue("serverip"); 
    final String port = helper.getValue("serverport"); 
 
    // 配置界面 輸入IP和端口的簡單界面,這里就不附xml了 
    View view = getLayoutInflater().inflate(R.layout.dialog_config, null); 
    final EditText etIP = (EditText) view.findViewById(R.id.etIP); 
    final EditText etPort = (EditText) view.findViewById(R.id.etPort); 
    etIP.setText(ip != null ? ip : Ksoap2Helper.getServerIP()); 
    etPort.setText(port != null ? port : String.valueOf(Ksoap2Helper 
        .getServerPort())); 
 
    // 配置對話框 
    MyDialog dialog = new MyDialog(this, "參數配置", null, "取消", "確定"); 
    // 添加配置界面到對話框 
    dialog.setChildView(view); 
    // 按鈕監聽 
    dialog.setOnDialogButtonClickListener(new OnDialogButtonClickListener() { 
 
      @Override 
      public void onOKButtonClick(MyDialog dialog, View view) { 
        // 保存配置 
        String newIP = etIP.getText().toString(); 
        String newPort = etPort.getText().toString(); 
 
        if (true) { 
          helper.putValue("serverip", newIP); 
          Ksoap2Helper.setServerIP(newIP); 
        } 
        if (true) { 
          helper.putValue("serverport", newPort); 
          Ksoap2Helper.setServerPort(Integer.valueOf(newPort)); 
        } 
        dialog.dismiss(); 
      } 
 
      @Override 
      public void onCancelButtonClick(MyDialog dialog, View view) { 
        dialog.dismiss(); 
      } 
    }); 
    dialog.show(); 
  }

關于怎么在Android應用中自定義dialog就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开江县| 镇康县| 常山县| 玉溪市| 雅安市| 钟祥市| 务川| 诸暨市| 宁晋县| 毕节市| 黔江区| 甘谷县| 龙南县| 施甸县| 广德县| 台湾省| 罗源县| 沂源县| 彭泽县| 巴东县| 巢湖市| 苍山县| 名山县| 紫金县| 浑源县| 宣武区| 三都| 崇左市| 江山市| 丰原市| 富源县| 稻城县| 朝阳区| 曲松县| 濮阳县| 巫溪县| 普兰店市| 富宁县| 于都县| 东乡族自治县| 榕江县|