Android使用自訂AlertDialog(退出提示框)

來源:互聯網
上載者:User
有時候我們需要在遊戲或應用中用一些符合我們樣式的提示框(AlertDialog)


以下是我在開發一個小遊戲中總結出來的.希望對大家有用.

先上:

下面是用到的背景圖或按鈕的圖片

經過尋找資料和參考了一下例子後才知道,要實現這種效果很簡單.就是在設定alertDialog的contentView.以下的代碼是寫在Activity下的,代碼如下:

  1. public boolean onKeyDown(int keyCode, KeyEvent event) {
  2. // 如果是返回鍵,直接返回到案頭
  3. if(keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_HOME){
  4. showExitGameAlert();
  5. }
  6. return super.onKeyDown(keyCode, event);
  7. }
  8. private void showExitGameAlert() {
  9. final AlertDialog dlg = new AlertDialog.Builder(this).create();
  10. dlg.show();
  11. Window window = dlg.getWindow();
  12. // *** 主要就是在這裡實現這種效果的.
  13. // 設定視窗的內容頁面,shrew_exit_dialog.xml檔案中定義view內容
  14. window.setContentView(R.layout.shrew_exit_dialog);
  15. // 為確認按鈕添加事件,執行退出應用操作
  16. ImageButton ok = (ImageButton) window.findViewById(R.id.btn_ok);
  17. ok.setOnClickListener(new View.OnClickListener() {
  18. public void onClick(View v) {
  19. exitApp(); // 退出應用...
  20. }
  21. });
  22. // 關閉alert對話方塊架
  23. ImageButton cancel = (ImageButton) window.findViewById(R.id.btn_cancel);
  24. cancel.setOnClickListener(new View.OnClickListener() {
  25. public void onClick(View v) {
  26. dlg.cancel();
  27. }
  28. });
  29. }

複製代碼

以下的是layout檔案,定義了對話方塊中的背景與按鈕.點擊事件在Activity中添加.
檔案名稱為 : shrew_exit_dialog.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_height="wrap_content"
  5. android:layout_width="wrap_content">
  6. <!-- 離開遊戲的背景圖 -->
  7. <ImageView android:id="@+id/exitGameBackground"
  8. android:layout_centerInParent="true"
  9. android:layout_height="wrap_content"
  10. android:layout_width="wrap_content"
  11. android:src="@drawable/bg_exit_game" />
  12. <!-- 確認按鈕 -->
  13. <ImageButton android:layout_alignBottom="@+id/exitGameBackground"
  14. android:layout_alignLeft="@+id/exitGameBackground"
  15. android:layout_marginBottom="30dp"
  16. android:layout_marginLeft="35dp"
  17. android:id="@+id/btn_ok"
  18. android:layout_height="wrap_content"
  19. android:layout_width="wrap_content"
  20. android:background="@drawable/btn_ok" />
  21. <!-- 取消按鈕 -->
  22. <ImageButton android:layout_alignBottom="@+id/exitGameBackground"
  23. android:layout_alignRight="@+id/exitGameBackground"
  24. android:layout_marginBottom="30dp"
  25. android:layout_marginRight="35dp"
  26. android:id="@+id/btn_cancel"
  27. android:layout_height="wrap_content"
  28. android:layout_width="wrap_content"
  29. android:background="@drawable/btn_cancel" />
  30. </RelativeLayout>

複製代碼

就這樣經過了以上幾步,就可以實現自訂AlertDialog的效果了. 用同樣的思路可以實現其它更複雜的效果.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.