溫馨提示×

溫馨提示×

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

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

Android 標(biāo)題欄顯示進(jìn)度條

發(fā)布時間:2020-07-21 18:59:37 來源:網(wǎng)絡(luò) 閱讀:733 作者:guozhendan 欄目:移動開發(fā)

不廢話,直入主題!

有兩種方法,一種是調(diào)用系統(tǒng)自身,另一種就是自定義了。


方法一:

在Activity的onCreate()方法中,在super.onCreate(savedInstanceState);之后,在setContentView之前添加下面一行代碼:requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); 
在需要顯示進(jìn)度時調(diào)用 setProgressBarIndeterminateVisibility(true);

在要停止顯示時調(diào)用 setProgressBarIndeterminateVisibility(false);


方法二:

如果覺得系統(tǒng)的不好看,可以自己添加控件ProgressBar到標(biāo)題欄,再在需要顯示或不顯示的時候調(diào)用setVisibility方法即可;

例如,我的ProgressBar控件是這樣的:

<ProgressBar 
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:indeterminateDrawable="@drawable/loading_progress"
   android:indeterminateOnly="true"
   android:indeterminateBehavior="repeat"
   />


loading_progress.xml內(nèi)容如下:

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/loading"
    android:pivotX="50%"
    android:pivotY="50%" />



相信大家都知道該怎么用了吧?再不明白就留言吧!


向AI問一下細(xì)節(jié)

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

AI