Android自訂AlertDialog

來源:互聯網
上載者:User

標籤:

常見的一種方法:

[html] view plaincopyprint?

  1. AlertDialog.Builder builder;  

  2.                 AlertDialog alertDialog;  

  3.   

  4.                 LayoutInflater inflater = getLayoutInflater();  

  5.                 // 添加自訂的布局檔案  

  6.                 View layout = LayoutInflater.from(TestOne.this).inflate(  

  7.                         R.layout.dialog, null);  

  8.                 final TextView text = (TextView) layout.findViewById(R.id.tv1);  

  9.                 // 添加點擊事件  

  10.                 text.setOnClickListener(new OnClickListener() {  

  11.   

  12.                     @Override  

  13.                     public void onClick(View v) {  

  14.                         // TODO Auto-generated method stub  

  15.                         text.setText("call");  

  16.                     }  

  17.                 });  

  18.   

  19.                 builder = new AlertDialog.Builder(TestOne.this);  

  20.                 alertDialog = builder.create();  

  21.                 // 去掉邊框的黑色,因為設定的與四周的間距為0  

  22.                 alertDialog.setView(layout, 0, 0, 0, 0);  

  23.                 alertDialog.show();  

  24.                 // 修改大小  

  25.                 WindowManager.LayoutParams params = alertDialog.getWindow()  

  26.                         .getAttributes();  

  27.                 params.width = 350;  

  28.                 params.height = 200;  

  29.                 alertDialog.getWindow().setAttributes(params);  


這樣 ,重新給它填充自訂的布局視圖,但缺乏可擴充性,而且每次使用還得重新定義。

 

 

重寫AlertDialog類,定義方法:

[html] view plaincopyprint?

  1. /**  

  2.  * 自訂的對話方塊  

  3.  */  

  4. public abstract class MyAlerDialog extends AlertDialog implements  

  5.         android.view.View.OnClickListener {  

  6.   

  7.     protected MyAlerDialog(Context context) {  

  8.         super(context);  

  9.         // TODO Auto-generated constructor stub  

  10.     }  

  11.   

  12.     /**  

  13.      * 布局中的其中一個組件  

  14.      */  

  15.     private TextView txt;  

  16.   

  17.     @Override  

  18.     protected void onCreate(Bundle savedInstanceState) {  

  19.         // TODO Auto-generated method stub  

  20.         super.onCreate(savedInstanceState);  

  21.         // 載入自訂布局  

  22.         setContentView(R.layout.dialog);  

  23.         // setDialogSize(300, 200);  

  24.         txt = (TextView) findViewById(R.id.tv1);  

  25.         txt.setOnClickListener(this);  

  26.     }  

  27.   

  28.     /**  

  29.      * 修改 框體大小  

  30.      *   

  31.      * @param width  

  32.      * @param height  

  33.      */  

  34.     public void setDialogSize(int width, int height) {  

  35.         WindowManager.LayoutParams params = getWindow().getAttributes();  

  36.         params.width = 350;  

  37.         params.height = 200;  

  38.         this.getWindow().setAttributes(params);  

  39.     }  

  40.   

  41.     public abstract void clickCallBack();  

  42.       

  43.     /**  

  44.      * 點擊事件  

  45.      */  

  46.     @Override  

  47.     public void onClick(View v) {  

  48.         // TODO Auto-generated method stub  

  49.         if (v == txt) {  

  50.             clickCallBack();  

  51.         }  

  52.     }  

  53.   

  54. }  

在活動中使用:

[html] view plaincopyprint?

  1. MyAlerDialog mydialog = new MyAlerDialog(this) {  

  2.             // 重寫callback方法  

  3.             @Override  

  4.             public void clickCallBack() {  

  5.                 // TODO Auto-generated method stub  

  6.                 btn.setText("call");  

  7.             }  

  8.         };  

  9.         mydialog.show();  

自己寫的功能就封裝了兩個,有需要的童鞋可以很容易的擴充。這種方法,顯然相對於上一種要有優勢得多啦。

Android自訂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.