當前位置: 首頁>>代碼示例>>Java>>正文


Java WallpaperManager.clear方法代碼示例

本文整理匯總了Java中android.app.WallpaperManager.clear方法的典型用法代碼示例。如果您正苦於以下問題:Java WallpaperManager.clear方法的具體用法?Java WallpaperManager.clear怎麽用?Java WallpaperManager.clear使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.app.WallpaperManager的用法示例。


在下文中一共展示了WallpaperManager.clear方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: clearWallpaper

import android.app.WallpaperManager; //導入方法依賴的package包/類
/**
     * 清除壁紙
     *
     * @param view
     */
    public void clearWallpaper(View view) {
        WallpaperManager wallpaperManager = WallpaperManager.getInstance(this);
        try {
            wallpaperManager.clear();
//            clearWallpaper();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
開發者ID:coolspan,項目名稱:LiveWallpaper,代碼行數:15,代碼來源:MainActivity.java

示例2: onHandleIntent

import android.app.WallpaperManager; //導入方法依賴的package包/類
@Override
protected void onHandleIntent(Intent intent) {
    if (intent == null) {
        Log.i(TAG, "onHandleIntent is null.");
        return;
    }

    if (ACTION_START.equals(intent.getAction())) {
        //壁紙の変更を開始
        Log.v(TAG, "キーワード検索");
        String keyword = intent.getStringExtra(EXTRA_SEARCH_KEYWORD);
        if (!TextUtils.isEmpty(keyword)) {
            startSearch(keyword);
        }
        Log.v(TAG, "壁紙の変更開始");
        WallpaperBroadcastReceiver.startPolling(getApplicationContext());
    } else if (ACTION_STOP.equals(intent.getAction())) {
        //壁紙の変更を停止
        Log.v(TAG, "壁紙の変更を停止");
        WallpaperBroadcastReceiver.cancelPolling(getApplicationContext());
        WallpaperManager wm = WallpaperManager.getInstance(getApplicationContext());
        try {
            wm.clear();
        } catch (IOException e) {
            Log.e(TAG, "壁紙のクリアに失敗しました。", e);
        }
    } else {
        // 畫像のダウンロード
        String url = intent.getStringExtra(EXTRA_IMAGE_URL);
        if (!TextUtils.isEmpty(url)) {
            startDownloadImage(url);
        }
    }
}
 
開發者ID:yokmama,項目名稱:honki_android2,代碼行數:35,代碼來源:ConnectionService.java

示例3: clear

import android.app.WallpaperManager; //導入方法依賴的package包/類
public static void clear(Context context, int whichWallpaper) throws IOException {
    WallpaperManager wallpaperManager = WallpaperManager.getInstance(context);
    if (Utilities.ATLEAST_N) {
        wallpaperManager.clear(whichWallpaper);
    } else {
        // Fall back to previous implementation (clear system)
        wallpaperManager.clear();
    }
}
 
開發者ID:RunasSudo,項目名稱:FLauncher,代碼行數:10,代碼來源:NycWallpaperUtils.java


注:本文中的android.app.WallpaperManager.clear方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。