溫馨提示×

溫馨提示×

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

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

Android中如何對AlertDialog進行操作

發(fā)布時間:2022-04-16 16:01:34 來源:億速云 閱讀:134 作者:iii 欄目:開發(fā)技術

這篇文章主要介紹了Android中如何對AlertDialog進行操作的相關知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Android中如何對AlertDialog進行操作文章都會有所收獲,下面我們一起來看看吧。

Android AlertDialog代碼示例:

package maximyudin.AlertDialogBuilderSample;   import android.app.Activity;   import android.os.Bundle;   import android.widget.Button;   import android.view.View;   import android.app.AlertDialog;   import android.content.DialogInterface;   public class AlertDialogBuilderSample extends Activity {   @Override   public void onCreate(Bundle icicle) {   super.onCreate(icicle);   setContentView(R.layout.main);   final Button btnQuit = (Button) findViewById(R.id.btnQuit);   btnQuit.setOnClickListener(new Button.OnClickListener() {   public void onClick(View v) {   new AlertDialog.Builder(AlertDialogBuilderSample.this)   .setTitle(“Question”)   .setMessage(“Are you sure that you want to quit?”)   .setIcon(R.drawable.question)   .setPositiveButton(“Yes”, new DialogInterface.OnClickListener() {   public void onClick(DialogInterface dialog, int whichButton) {   setResult(RESULT_OK);   finish();   }   })   .setNegativeButton(“No”, new DialogInterface.OnClickListener() {   public void onClick(DialogInterface dialog, int whichButton) {   }   })   .show();   }   });   final Button btnTravels = (Button) findViewById(R.id.btnTravels);   btnTravels.setOnClickListener(new Button.OnClickListener() {   public void onClick(View v) {   new AlertDialog.Builder(AlertDialogBuilderSample.this)   .setTitle(“I want to go to”)   .setItems(R.array.items_indide_dialog,   new DialogInterface.OnClickListener() {   public void onClick(DialogInterface dialog, int whichcountry) {   String[] travelcountries =   getResources().getStringArray(R.array.items_indide_dialog);   new AlertDialog.Builder(AlertDialogBuilderSample.this)   .setMessage(“I’m going to “ + travelcountries[whichcountry])   .setNeutralButton(“Cancel”,   new DialogInterface.OnClickListener() {   public void onClick(DialogInterface dialog, int whichButton)   {   }   })   .show();   }   })   .show();   }   });   }   }

關于“Android中如何對AlertDialog進行操作”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Android中如何對AlertDialog進行操作”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI