android自定义好看的对话框,Android自定义对话框-Fun言

这个博客展示了如何在Android中创建自定义对话框并处理按钮点击事件。通过LayoutInflater加载布局,设置按钮监听器,实现了点击按钮显示和关闭对话框的功能。同时,提供了输入账号和密码的示例,点击确定按钮时会显示输入的账号和密码。
摘要由CSDN通过智能技术生成

5ea421ca6c101f538d6e1230afc3ac02.png

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button1"

android:onClick="brn1Onclick"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button2"

android:onClick="brn2Onclick"/>

package com.example.test13;

import android.support.v7.app.ActionBarActivity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.LayoutInflater;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.Toast;

public class MainActivity extends ActionBarActivity {

private Dialog customDialog;

private EditText zh;

private EditText pwd;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

createCustom();

}

public void createCustom(){

LayoutInflater inflater=getLayoutInflater();

View customView=inflater.inflate(R.layout.custon_view, null);

Button btnOk=(Button)customView.findViewById(R.id.et_ok);

btnOk.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

customDialog.dismiss();

}

});

customDialog=new Dialog(this);

customDialog.setTitle("自定义");

customDialog.setContentView(customView);

}

public void brn2Onclick(View view){

customDialog.show();

}

public void brn1Onclick(View view){

LayoutInflater inflater=getLayoutInflater();

View custonView=inflater.inflate(R.layout.custon_view, null);

zh=(EditText) custonView.findViewById(R.id.et_zh);

pwd=(EditText) custonView.findViewById(R.id.et_pwd);

new AlertDialog.Builder(this)

.setTitle("自定义")

.setView(custonView)

.setPositiveButton("确定", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

String userName=zh.getText().toString().trim();

String userPassword=pwd.getText().toString().trim();

Toast.makeText(MainActivity.this, userName+":"+userPassword, Toast.LENGTH_LONG).show();

}

})

.show();

}

}

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="账号:"

android:textSize="20sp"/>

android:id="@+id/et_zh"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="请输入账号"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="密码:"

android:textSize="20sp"/>

android:id="@+id/et_pwd"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:inputType="textPassword"

android:hint="请输入密码"/>

android:id="@+id/et_ok"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="ok"/>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值