中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在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

博罗县| 沂源县| 奉贤区| 楚雄市| 中西区| 易门县| 江都市| 五家渠市| 河池市| 金山区| 库尔勒市| 芦溪县| 府谷县| 青田县| 万宁市| 凤冈县| 龙胜| 吉木萨尔县| 济南市| 云龙县| 同仁县| 阿巴嘎旗| 灵寿县| 栾城县| 嘉义县| 山丹县| 镇远县| 祁东县| 全椒县| 顺平县| 绥阳县| 内黄县| 手游| 礼泉县| 祁阳县| 阿拉尔市| 安岳县| 宁夏| 和林格尔县| 阿拉善盟| 信阳市|