Android中制作自定义dialog对话框的实例分享

自定义dialog基础版
很多时候,我们在使用android sdk提供的alerdialog的时候,会因为你的系统的不同而产生不同的效果,就好比如你刷的是MIUI的系统,弹出框都会在顶部显示!这里简单的介绍自定义弹出框的应用。

首先创建布局文件dialog:

代码:

<?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="match_parent"
  android:orientation="vertical" >
  <EditText
    android:id="@+id/edit"
    android:layout_width="250dip"
     android:layout_height="wrap_content"
    />
  <Button
    android:id="@+id/clickbtn"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="click me" />

</LinearLayout>

其次创建MyCustomDialog类继承Dialog:

代码:

package com.xzw.custom.dialog;

import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
/**
* 自定义dialog
*/
public class MyCustomDialog extends Dialog {
    //定义回调事件,用于dialog的点击事件
    public interface OnCustomDialogListener{
        public void back(String name);
    }

    private String name;
    private OnCustomDialogListener customDialogListener;
    EditText etName;

    public MyCustomDialog(Context context,String name,OnCustomDialogListener customDialogListener) {
        super(context);
        this.name = name;
        this.customDialogListener = customDialogListener;
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.dialog);
        //设置标题
        setTitle(name);
        etName = (EditText)findViewById(R.id.edit);
        Button clickBtn = (Button) findViewById(R.id.clickbtn);
        clickBtn.setOnClickListener(clickListener);
    }

    private View.OnClickListener clickListener = new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            customDialogListener.back(String.valueOf(etName.getText()));
          MyCustomDialog.this.dismiss();
        }
    };

}

最后再完成MainActivity:

代码:

package com.xzw.custom.dialog;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity implements OnClickListener {
   private TextView resultText;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    resultText = (TextView) findViewById(R.id.result);
    Button showDialogBtn = (Button) findViewById(R.id.showdialog);
    showDialogBtn.setOnClickListener(this);

  }

    @Override
    public void onClick(View v) {
         MyCustomDialog dialog = new MyCustomDialog(this,"Enter your name",new MyCustomDialog.OnCustomDialogListener() {

                @Override
                public void back(String name) {
                    resultText.setText("Enter name is "+name);

                }
            });
            dialog.show();

  }

}

效果如图:

炫酷升级版
在日常开发过程中,Android自带的对话框控件美观程度远远满足不了开发的要求,特别是相对于移植开发,下面描述的demo是基于1280X720分辨率实现的效果。

自定义对话框和上次记录的自定义RatingBar非常类似,都是通过在styles.xml里面继承父类(此处是Dialog)的样式。
styles.xml

<style name="NoticeDialog" 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/tck_bg</item><!--背景透明-->
    <item name="android:backgroundDimEnabled">false</item><!--模糊-->
  </style>

我们下面将要做下面三个效果:
(1)带选择确认框的提示

(2)图片+文字的提示

(3)图片+图片

实现上面三个效果我们只需要继承一个Dialog类,然后根据不同的布局添加相对应的xml布局就可以简单实现功能扩展的效果了。
1.继承Dialog类,重写父类的方法,并添加子类自己的方法。
NoticeDialog.java,继承于Dialog父类,实现了点击事件的接口,如果有确认选择框,则把确认选择框的控件添加click事件监听,通过在回调方法在UI主线程里面实现界面更新和逻辑操作。

package com.zlc.dialog;

import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;

public class NoticeDialog extends Dialog implements OnClickListener{
  Context context;
  private NoticeDialogListener listener;
  //对话框事件监听接口,用于处理回调点击事件
  public interface NoticeDialogListener {
    public void onClick(View view);
  }
  public NoticeDialog(Context context) {
    super(context);
    // TODO Auto-generated constructor stub
    this.context = context;
  }
  public NoticeDialog(Context context,int theme){
    super(context, theme);
    this.context = context;
  }
  public NoticeDialog(Context context,int theme,NoticeDialogListener listener){
    super(context, theme);
    this.context = context;
    this.listener = listener;
  }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    TextView enter = (TextView)findViewById(R.id.dialog_enter);//确定控件
    TextView cancel = (TextView)findViewById(R.id.dialog_cancle);//取消控件
    if(enter != null && cancel != null){//如果是不带确认选择框,不做事件监听操作
      enter.setOnClickListener(this);
      cancel.setOnClickListener(this);
      enter.requestFocus();
    }

  }
  @Override
  public void onClick(View v) {
    // TODO Auto-generated method stub
    listener.onClick(v);
  }
}

2.对应上面三个效果,添加不同的xml布局。
(1)带选择确认框的提示dialog_notice_choise.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="652dp"
  android:layout_height="352dp"
  >
  <LinearLayout
     android:layout_width="500dp"
     android:layout_height="200dp"
    android:layout_marginLeft="76dp"
    android:layout_marginTop="76dp"
    android:orientation="vertical"
    android:background="@drawable/tck01">
    <LinearLayout
       android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="5dp"
      android:layout_marginLeft="10dp"

      >
      <TextView
      android:textSize="26sp"
       android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textColor="@color/dialog_title"
      android:text="@string/dialog_title"
         android:focusable="false"
      />
    </LinearLayout>

    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="40dp"
      android:gravity="center"
      >  

       <TextView
      android:id="@+id/notice_value"
      android:textSize="32sp"
      android:layout_marginLeft="10dp"
       android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textColor="@color/dialog_content"
      android:text="@string/dialog_uninstall"
        android:focusable="false"
      />
      </LinearLayout>
    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="44dp"
      android:layout_marginTop="35dp"
      android:layout_marginLeft="4dp"
      >
      <TextView
        android:id="@+id/dialog_enter"
        android:textSize="25sp"
         android:layout_width="246dp"
      android:layout_height="fill_parent"
      android:text="@string/dialog_enter"
      android:gravity="center"
      android:textColor="@drawable/app_manager_dialog_textcolor"
      android:background="@drawable/app_manager_dialog_btn_color"
      android:focusable="true"
        />
      <TextView
        android:id="@+id/dialog_cancle"
         android:textSize="25sp"
         android:layout_width="246dp"
      android:layout_height="fill_parent"
       android:text="@string/dialog_cancel"
       android:gravity="center"
        android:textColor="@drawable/app_manager_dialog_textcolor"
         android:background="@drawable/app_manager_dialog_btn_color"
          android:focusable="true"
        />
      </LinearLayout>

    </LinearLayout>
</LinearLayout>

(2)图片+文字的提示dialog_notice_ing.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="652dp"
  android:layout_height="352dp"
  >
  <LinearLayout
     android:layout_width="500dp"
     android:layout_height="200dp"
    android:layout_marginLeft="76dp"
       android:layout_marginTop="76dp"
    android:orientation="vertical"
    android:background="@drawable/tck01">
    <LinearLayout
       android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="5dp"
      android:layout_marginLeft="10dp"

      >
      <TextView
      android:textSize="26sp"
       android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textColor="@color/dialog_title"
      android:text="@string/dialog_title"
      />
    </LinearLayout>

    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="50dp"
       android:gravity="center"
      >
      <ImageView
         android:layout_width="38dp"
         android:layout_height="42dp"
        android:src="@drawable/uninstall_icon"/>
       <TextView
         android:id="@+id/dialog_in_msg"
      android:textSize="32sp"
      android:layout_marginLeft="10dp"
       android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textColor="@color/dialog_content"
      android:text="@string/dialog_uninstall_in"
      />
      </LinearLayout>

    </LinearLayout>
</LinearLayout>

(3)图片+图片dialog_notice_finish.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="652dp"
  android:layout_height="352dp"
  >
  <LinearLayout
     android:layout_width="500dp"
     android:layout_height="200dp"
    android:layout_marginLeft="76dp"
       android:layout_marginTop="76dp"
    android:orientation="vertical"
    android:background="@drawable/tck01">
    <LinearLayout
       android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="5dp"
      android:layout_marginLeft="10dp"

      >
      <TextView
      android:textSize="26sp"
       android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textColor="@color/dialog_title"
      android:text="@string/dialog_title"
      />
    </LinearLayout>

    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="40dp"
       android:gravity="center"
      >
      <ImageView
         android:layout_width="66dp"
         android:layout_height="67dp"
        android:src="@drawable/cg"/>
       <ImageView
      android:id="@+id/dialog_finish_img"
      android:layout_marginLeft="20dp"
       android:layout_width="165dp"
         android:layout_height="36dp"
        android:src="@drawable/uninstall_ok"
      />
      </LinearLayout>

    </LinearLayout>
</LinearLayout>

3.在MainActivity实现对自定义对话框的添加显示。
MainActivity.java,在进行对话框切换显示的时候,只需要设置不同的xml配置文件就行了。(注意:NoticeDialog里面的构造方法的context参数只能是XXXActivity.this,不能是通过getApplicationContext获取的context对象)

package com.zlc.dialog;

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;

import com.zlc.dialog.NoticeDialog.NoticeDialogListener;

public class MainActivity extends Activity {
  private Context context;
  private NoticeDialog notiDialog;
  int count = 0;
  Handler handler;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    context = getApplicationContext();
    notiDialog = new NoticeDialog(MainActivity.this,
        R.style.NoticeDialog, new NoticeDialogListener() {
      @Override
      public void onClick(View view) {
        try {
          if(view.getId() == R.id.dialog_enter){
            notiDialog.dismiss();
            //TODO 购买
          }
          notiDialog.dismiss();
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
    });
    notiDialog.setContentView(R.layout.dialog_notice_choise);
    notiDialog.show();
    Timer timer = new Timer();
    handler = new Myhandler();

    timer.schedule(new TimerTask() {
      @Override
      public void run() {
        // TODO Auto-generated method stub
        count = count % 4;
        notiDialog.cancel();
        handler.sendEmptyMessage(count);
        count ++;
      }
    }, 3000, 3000);
  }
  private class Myhandler extends Handler{
    @Override
    public void handleMessage(Message msg) {
      // TODO Auto-generated method stub
      switch (msg.what) {
      case 0:
        notiDialog.setContentView(R.layout.dialog_notice_ing);
        break;
      case 1:
        notiDialog.setContentView(R.layout.dialog_notice_finish);
        break;
      case 2:
        notiDialog.setContentView(R.layout.dialog_notice_choise);
        break;
      default:
        break;
      }
      notiDialog.show();
    }
  }

}
(0)

相关推荐

  • Android编程实现带有单选按钮和复选按钮的dialog功能示例

    本文实例讲述了Android编程实现带有单选按钮和复选按钮的dialog.分享给大家供大家参考,具体如下: 带有单选按钮的dialog: package example.com.myapplication; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.

  • 8种android 对话框(Dialog)使用方法详解

    本文汇总了android 8种对话框(Dialog)使用方法,分享给大家供大家参考,具体内容如下 1.写在前面 Android提供了丰富的Dialog函数,本文介绍最常用的8种对话框的使用方法,包括普通(包含提示消息和按钮).列表.单选.多选.等待.进度条.编辑.自定义等多种形式,将在第2部分介绍. 有时,我们希望在对话框创建或关闭时完成一些特定的功能,这需要复写Dialog的create().show().dismiss()等方法,将在第3部分介绍. 2.代码示例 2.1 普通Dialog(图

  • Android使用AlertDialog实现的信息列表单选、多选对话框功能

    在使用AlertDialog实现单选和多选对话框时,分别设置setSingleChoiceItems()和setMultiChoiceItems()函数. 下面看主要的代码: 数据源数组: <resources> <!--单选--> <string-array name="arr_weather"> <item >晴</item> <item >多云</item> <item >小雨<

  • Android Dialog对话框详解

    废话不多说了,直接给大家贴代码了. 布局文件xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_paren

  • Android中自定义对话框(Dialog)的实例代码

    1.修改系统默认的Dialog样式(风格.主题) 2.自定义Dialog布局文件 3.可以自己封装一个类,继承自Dialog或者直接使用Dialog类来实现,为了方便以后重复使用,建议自己封装一个Dialog类 第一步: 我们知道Android定义个控件或View的样式都是通过定义其style来实现的,查看Android框架中的主题文件,在源码中的路径:/frameworks/base/core/res/res/values/themes.xml,我们可以看到,Android为Dialog定义了

  • Android实现自定义圆角对话框Dialog的示例代码

    前言: 项目中多处用到对话框,用系统对话框太难看,就自己写一个自定义对话框. 对话框包括:1.圆角 2.app图标 , 提示文本,关闭对话框的"确定"按钮 难点:1.对话框边框圆角显示 2.考虑到提示文本字数不确定,在不影响美观的情况下,需要在一行内显示提示的文字信息 3.设置对话框的宽和高 技术储备: 1.安卓开发_使用AlertDialog实现对话框    知道AlertDialog有setView(view) ,Dialog 有ContentView(view) 方法. 2.An

  • Android使用自定义alertdialog实现确认退出按钮

    有时候我们需要在游戏或应用中用一些符合我们样式的提示框(AlertDialog),以下是我在开发一个小游戏中总结出来的.希望对大家有用. 先上效果图: 下面是用到的背景图或按钮的图片 经过查找资料和参考了一下例子后才知道,要实现这种效果很简单.就是在设置alertDialog的contentView. 以下的代码是写在Activity下的,代码如下: public boolean onKeyDown(int keyCode, KeyEvent event) { // 如果是返回键,直接返回到桌面

  • Android UI设计系列之自定义Dialog实现各种风格的对话框效果(7)

    虽然Android给我们提供了众多组件,但是使用起来都不是很方便,我们开发的APK都有自己的风格,如果使用了系统自带的组件,总是觉得和应用的主题不着边际并且看起来也不顺心,那我们就需要自定义了,为了方便大家对自定义组件的学习,我接下来准备了几遍有关自定义的Dialog的文章,希望对大家有帮助. 在开发APK中最常见的估计就数弹出对话框了,这种对话框按照按钮数量来分大致是三种:一个按钮,两个按钮,三个按钮.现在要讲的就是按照按钮数量分为以上三类吧(当然了可以有更多的按钮,只要你愿意). 自定义Di

  • Android开发之利用Activity实现Dialog对话框

    前言 在Android中经常要使用Dialog来实现一些提示以及一些特殊的效果,而且样式也不一样,每次都得查一大堆资料,还不一定能解决.对话框是个好东西,创建简单有实用.当下的开发中,很多的开发者反而更喜欢使用activity来代替对话框,至少笔者的团队中,类似于升级提示或者指示页及其他一些交互的地方,大量的把Dialog替换成activity,好处是显而易见的,activity具有更灵活的操作和布局,另外很重要一点是,一些容易涉及内存泄漏的代码放在activity中执行比放在Dialog中执行

  • 属于自己的Android对话框(Dialog)自定义集合

    Activities提供了一种方便管理的创建.保存.回复的对话框机制,例如 onCreateDialog(int), onPrepareDialog(int, Dialog), showDialog(int), dismissDialog(int)等方法,如果使用这些方法的话,Activity将通过getOwnerActivity()方法返回该Activity管理的对话框(dialog). onCreateDialog(int):当你使用这个回调函数时,Android系统会有效的设置这个Acti

  • Android实现点击AlertDialog上按钮时不关闭对话框的方法

    本文实例讲述了Android实现点击AlertDialog上按钮时不关闭对话框的方法.分享给大家供大家参考.具体如下: 开发过程中,有时候会有这样的需求: 点击某个按钮之后显示一个对话框,对话框上面有一个输入框,并且有"确认"和"取消"两个按钮.当用户点击确认按钮时,需要对输入框的内容进行判断.如果内容为空则不关闭对话框,并toast提示. 使用AlertDialog.Builder创建对话框时,可以使用builder.setNegativeButton和build

随机推荐