Android Studio基础对话框AlertDialog最基本的使用
Posted 徐为波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio基础对话框AlertDialog最基本的使用相关的知识,希望对你有一定的参考价值。
android Studio基础对话框AlertDialog最基本的使用
1、对按钮添加一个点击事件,需要配合Activity.java进行实现
第一步:在该布局XML中对按钮增加ID值,进行唯一性参照物
<?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">
<Button
android:id="@+id/btn_alert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="显示对话框"
/>
</LinearLayout>
第二步:到LayoutActivity.java配置,首先绑定布局xml文件
1)通过接口方式进行实现
在public class LayoutActivity extends AppCompatActivity后面导入 implements View.OnClickListener
2)实现该接口View.OnClickListener自动生成此接口抽象方法,代码内容如下
3)使用多态性btn_alert.setOnClickListener(this);
4)编写该接口的抽象方法
package com.xwb.btn1;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
public class LayoutActivity extends AppCompatActivity implements View.OnClickListener
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.layout);//设置的布局界面
Button btn_alert = findViewById(R.id.btn_alert);//实现变量值与布局进行关联
btn_alert.setOnClickListener(this);//多态性,是指View.OnClickListener
@Override
public void onClick(View view)
//1、创造一个builder的构造器
AlertDialog.Builder builder = new AlertDialog.Builder(this);
//2、设置标题、设置图片、设置消息内容、设置setPositiveButton确定按钮(当点击OK后,new是要去做啥事情)
builder.setTitle("对话框").setIcon(R.mipmap.ic_launcher).setMessage("今晚一起喝酒?").setPositiveButton("OK", new DialogInterface.OnClickListener()
@Override
public void onClick(DialogInterface dialogInterface, int i)
//3、设置需要弹出对话框信息
Toast.makeText(LayoutActivity.this,"好的,你请客就行。",Toast.LENGTH_SHORT).show();
)
//4、设置取消按钮,new为不同意后做的事情
.setNegativeButton("不好", new DialogInterface.OnClickListener()
@Override
public void onClick(DialogInterface dialogInterface, int i)
//5、设置需要弹出对话框信息
Toast.makeText(LayoutActivity.this,"不行,今晚要回家",Toast.LENGTH_SHORT).show();
);
//6、AlertDialog方法创建对话框,并通过.show()方法显示对话框
AlertDialog ad = builder.create();
ad.show();
第三步:运行APP效果
此类对话框场景是做“删除”操作可以使用。
参考:
https://blog.csdn.net/weixin_33735077/article/details/85784360
https://blog.csdn.net/lpCrazyBoy/article/details/80538257
以上是关于Android Studio基础对话框AlertDialog最基本的使用的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio基础使用单选对话框AlertDialog