這篇文章給大家分享的是有關(guān)如何使用Android仿微信網(wǎng)絡(luò)加載彈出框的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)無錫,10多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):189808205751. 自定義view的style樣式
2.dialog_custom_bg 加載動畫shape背景圖(drawable文件夾下)
3.indeterminate_drawable 進(jìn)度條模糊背景圖(drawable文件夾下)
4.加載對話框的背景
5.CustomDialog自定義控件
public class CustomDialog extends Dialog { private String content; public CustomDialog(Context context, String content) { super(context, R.style.CustomDialog); this.content=content; initView(); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { switch (keyCode){ case KeyEvent.KEYCODE_BACK: if(CustomDialog.this.isShowing()) CustomDialog.this.dismiss(); break; } return true; } private void initView(){ setContentView(R.layout.dialog_view); ((TextView)findViewById(R.id.tvcontent)).setText(content); setCanceledOnTouchOutside(true); WindowManager.LayoutParams attributes = getWindow().getAttributes(); attributes.alpha=0.8f; getWindow().setAttributes(attributes); setCancelable(false); }}
6.Activity中直接調(diào)用
CustomDialog customDialog = new CustomDialog(this, "正在加載...");customDialog.show();//顯示,顯示時頁面不可點(diǎn)擊,只能點(diǎn)擊返回customDialog.dismiss();//消失
感謝各位的閱讀!關(guān)于“如何使用Android仿微信網(wǎng)絡(luò)加載彈出框”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!