怎么在android中利用ProgressDialog實(shí)現(xiàn)一個(gè)全屏效果?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
在南湖等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專(zhuān)注、極致的服務(wù)理念,為客戶(hù)提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需設(shè)計(jì)網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,成都全網(wǎng)營(yíng)銷(xiāo),成都外貿(mào)網(wǎng)站建設(shè),南湖網(wǎng)站建設(shè)費(fèi)用合理。ProgressDialog的創(chuàng)建方式有兩種,一種是new Dialog ,一種是調(diào)用Dialog的靜態(tài)方法Dialog.show()。
// 方式一:new Dialog final ProgressDialog dialog = new ProgressDialog(this); dialog.show(); // 方式二:使用靜態(tài)方式創(chuàng)建并顯示,這種進(jìn)度條只能是圓形條,設(shè)置title和Message提示內(nèi)容 ProgressDialog dialog2 = ProgressDialog.show(this, "提示", "正在登陸中"); // 方式三 使用靜態(tài)方式創(chuàng)建并顯示,這種進(jìn)度條只能是圓形條,這里最后一個(gè)參數(shù)boolean indeterminate設(shè)置是否是不明確的狀態(tài) ProgressDialog dialog3 = ProgressDialog.show(this, "提示", "正在登陸中", false); // 方式四 使用靜態(tài)方式創(chuàng)建并顯示,這種進(jìn)度條只能是圓形條,這里最后一個(gè)參數(shù)boolean cancelable 設(shè)置是否進(jìn)度條是可以取消的 ProgressDialog dialog4 = ProgressDialog.show(this, "提示", "正在登陸中", false, true); // 方式五 使用靜態(tài)方式創(chuàng)建并顯示,這種進(jìn)度條只能是圓形條,這里最后一個(gè)參數(shù) DialogInterface.OnCancelListener // cancelListener用于監(jiān)聽(tīng)進(jìn)度條被取消 ProgressDialog dialog5 = ProgressDialog.show(this, "提示", "正在登陸中", true, true, cancelListener);
方式五中需要一個(gè)cancelListener,代碼如下:
private OnCancelListener cancelListener = new OnCancelListener() { @Override public void onCancel(DialogInterface dialog) { // TODO Auto-generated method stub Toast.makeText(MainActivity.this, "進(jìn)度條被取消", Toast.LENGTH_LONG).show(); } };
本文的知識(shí)點(diǎn):
1、實(shí)現(xiàn)ProgressDialog的全屏效果
2、接口回調(diào)推薦的方式
項(xiàng)目要求實(shí)現(xiàn)的效果.png
剛開(kāi)始實(shí)現(xiàn)的效果.png
代碼實(shí)現(xiàn):
1、布局
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"> <com.tecsun.tsb.network.tool.AnimImageViewLoader android:id="@+id/iv_load_anim" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/anim_all_load"/> <TextView android:id="@+id/tv_all_load" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/tip_load_pay_wait_result" android:textSize="26sp" android:textColor="@color/c_white" android:layout_marginTop="20dp"/> <TextView android:id="@+id/tv_all_load_other" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/tip_load_pay_wait_tip" android:textSize="26sp" android:textColor="@color/c_orange_1" android:layout_marginTop="20dp"/> <Button android:id="@+id/btn_cancel" android:layout_height="75dp" android:layout_width="600dp" android:layout_marginTop="20dp" android:text="取消查詢(xún)" android:background="@drawable/btn_white_gray7_selector" android:textColor="#000000" android:textSize="30sp" /> </LinearLayout>
2、核心代碼
Window window = getWindow(); WindowManager.LayoutParams layoutParams = window.getAttributes(); layoutParams.width = WindowManager.LayoutParams.MATCH_PARENT; layoutParams.height = WindowManager.LayoutParams.MATCH_PARENT; layoutParams.gravity = gravity; window.setAttributes(layoutParams);
3、接口回調(diào)的實(shí)現(xiàn)方式
public OnClickCancelListener mOnClickCancelListener; public void setOnClickCancelListener(OnClickCancelListener onClickCancelListener){ this.mOnClickCancelListener = onClickCancelListener; } public interface OnClickCancelListener{ void singleClick(); }
4、接口回調(diào)的調(diào)用方式
mLoadingProgressDialog.setOnClickCancelListener(new LoadingProgressDialog.OnClickCancelListener() { @Override public void singleClick() { LogUtil.d(TAG,"點(diǎn)擊取消查詢(xún)==========="); isContinueQuery = true; dismissPayResultLoadingDialog(); } });
5、全部代碼實(shí)現(xiàn)
public class LoadingProgressDialog extends ProgressDialog { private static final String TAG = LoadingProgressDialog.class.getSimpleName(); public LoadingProgressDialog(Context context) { super(context,R.style.style_custon_dialog); setCancelable(false); setCanceledOnTouchOutside(false); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.custom_dialog_all_loading); Window window = getWindow(); WindowManager.LayoutParams layoutParams = window.getAttributes(); layoutParams.width = WindowManager.LayoutParams.MATCH_PARENT; layoutParams.height = WindowManager.LayoutParams.MATCH_PARENT; layoutParams.gravity = gravity; window.setAttributes(layoutParams); Button benCancel = (Button) findViewById(R.id.btn_cancel); benCancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { LogUtil.d(TAG,"benCancel================"); mOnClickCancelListener.singleClick(); } }); } public OnClickCancelListener mOnClickCancelListener; public void setOnClickCancelListener(OnClickCancelListener onClickCancelListener){ this.mOnClickCancelListener = onClickCancelListener; } public interface OnClickCancelListener{ void singleClick(); } }
關(guān)于怎么在android中利用ProgressDialog實(shí)現(xiàn)一個(gè)全屏效果問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
網(wǎng)站名稱(chēng):怎么在android中利用ProgressDialog實(shí)現(xiàn)一個(gè)全屏效果-創(chuàng)新互聯(lián)
分享鏈接:http://jinyejixie.com/article2/dhdsic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、標(biāo)簽優(yōu)化、網(wǎng)站改版、品牌網(wǎng)站建設(shè)、Google、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容