溫馨提示×

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

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

WallpaperManager如何在Android 中使用

發(fā)布時(shí)間:2021-04-01 17:29:39 來(lái)源:億速云 閱讀:351 作者:Leah 欄目:移動(dòng)開發(fā)

這篇文章給大家介紹WallpaperManager如何在Android 中使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

Android 中WallpaperManager用法實(shí)例

注意:壁紙的設(shè)置得加入權(quán)限:

<uses-permission android:name="android.permission.SET_WALLPAPER"/>

1、WallpaperManager  對(duì)象的獲得:

wallpaperManager =WallpaperManager.getInstance(this);

2、設(shè)置壁紙的方法:

方法一:wallpaperManager.setBitmap(); // 參數(shù)
方法二:wallpaperManager.setResource();  // 參數(shù)為資源ID
方法三:通過(guò)ContextWrapper 類中的setWallpaper();  方法 // 參數(shù)為一個(gè)輸入流

3、定時(shí)更換壁紙:

使用 AlarmManager 系統(tǒng)定時(shí)服務(wù)

PendingIntent pi = PendingIntent.getService(this,0, new Intent("SERVICE_TO_SETWALL"), PendingIntent.FLAG_UPDATE_CURRENT); 

AlarmManager alarmManager = (AlarmManager) getSystemService(Service.ALARM_SERVICE); 
// 類型 ,執(zhí)行延遲的時(shí)間,實(shí)行時(shí)間間隔,動(dòng)作 
alarmManager.setRepeating(alarmManager.RTC_WAKEUP, 0, 2000, pi);

下列為一個(gè)服務(wù)用來(lái)設(shè)置墻紙:

import android.app.Service; 
import android.app.WallpaperManager; 
import android.content.Intent; 
import android.os.IBinder; 
 
 
/** 
 * 實(shí)現(xiàn)效果 -- 墻紙的切換 , 背景圖片 
 * @author Administrator 
 * 
 */ 
public class WallService extends Service { 
 
  private int[] res = new int[]{R.drawable.a,R.drawable.b,R.drawable.c}; // 切換圖片資源 
  private WallpaperManager wallpaperManager; //墻紙管理器 
  private int index; // 資源索引 
 
  // 綁定服務(wù) 
  public IBinder onBind(Intent intent) { 
 
    return null; 
  } 
 
  // 創(chuàng)建服務(wù) 
  public void onCreate() { 
    super.onCreate(); 
    wallpaperManager = WallpaperManager.getInstance(WallService.this); // 獲取壁紙管理器對(duì)象 
  } 
 
  // 銷毀服務(wù) 
  public void onDestroy() { 
    super.onDestroy(); 
     
  } 
 
  /** 
   * 啟動(dòng)服務(wù) 
   * 每次啟動(dòng)開始獲取資源 
   */ 
  public void onStart(Intent intent, int startId) { 
    super.onStart(intent, startId); 
    try{ 
      if(index>=3){ 
        index = 0; 
      } 
      wallpaperManager.setResource(res[index++]); // 設(shè)置資源 
    }catch(Exception ex){ 
      ex.printStackTrace(); 
    } 
  } 
}

關(guān)于WallpaperManager如何在Android 中使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

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

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

AI