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

溫馨提示×

溫馨提示×

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

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

怎么在android中實現一個彈出提示框

發布時間:2021-01-20 14:27:47 來源:億速云 閱讀:377 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在android中實現一個彈出提示框,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

提示框是利用AlertDialog實現的。

 new AlertDialog.Builder(MainActivity.this).setTitle("信息提示")//設置對話框標題

      .setMessage("是否需要更換xxx?")
      .setPositiveButton("是", new DialogInterface.OnClickListener() {//添加確定按鈕

       @Override
       public void onClick(DialogInterface dialog, int which) {//確定按鈕的響應事件,點擊事件沒寫,自己添加

       }
      }).setNegativeButton("否", new DialogInterface.OnClickListener() {//添加返回按鈕

     @Override
     public void onClick(DialogInterface dialog, int which) {//響應事件,點擊事件沒寫,自己添加

     }

    }).show();//在按鍵響應事件中顯示此對話框
   }
 });

實現效果:

怎么在android中實現一個彈出提示框

完整代碼:

package com.example.myapplicationusealertdialog;

import androidx.appcompat.app.AppCompatActivity;

import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
 Button bnt;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  bnt = findViewById(R.id.button);
  bnt.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View view) {
    new AlertDialog.Builder(MainActivity.this).setTitle("信息提示")//設置對話框標題

      .setMessage("是否需要更換xxx?")
      .setPositiveButton("是", new DialogInterface.OnClickListener() {//添加確定按鈕

       @Override
       public void onClick(DialogInterface dialog, int which) {//確定按鈕的響應事件

       }
      }).setNegativeButton("否", new DialogInterface.OnClickListener() {//添加返回按鈕

     @Override
     public void onClick(DialogInterface dialog, int which) {//響應事件

     }

    }).show();//在按鍵響應事件中顯示此對話框
   }
  });
 }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity">

 <Button
  android:layout_width="200dp"
  android:layout_marginLeft="100dp"
  android:layout_height="wrap_content"
  android:text="點擊"
  android:id="@+id/button"/>

</LinearLayout>

以上就是怎么在android中實現一個彈出提示框,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

台山市| 平江县| 天镇县| 湘潭市| 嘉黎县| 资源县| 盘山县| 星座| 肥城市| 马鞍山市| 云南省| 偏关县| 台山市| 新和县| 东辽县| 中方县| 桑日县| 门头沟区| 正阳县| 尖扎县| 临猗县| 阳城县| 鸡西市| 淮阳县| 嘉祥县| 沾益县| 蓬溪县| 晴隆县| 临武县| 白城市| 慈溪市| 灵武市| 长顺县| 调兵山市| 汉沽区| 高州市| 乌兰察布市| 德保县| 海林市| 绥德县| 右玉县|