亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

保定市| 马鞍山市| 定襄县| 山丹县| 平塘县| 瓮安县| 华容县| 佳木斯市| 柳林县| 吉木萨尔县| 梅河口市| 泽库县| 大竹县| 虎林市| 隆子县| 扎鲁特旗| 杭锦旗| 师宗县| 北辰区| 修水县| 冕宁县| 扎囊县| 南投市| 兴海县| 青铜峡市| 新余市| 齐河县| 蒲城县| 楚雄市| 天门市| 神木县| 潢川县| 西青区| 大姚县| 汤原县| 双城市| 堆龙德庆县| 工布江达县| 长沙市| 台东县| 苏尼特左旗|