Android Open Source - simple-wallpaper-extractor-android Util






From Project

Back to project page simple-wallpaper-extractor-android.

License

The source code is released under:

Copyright (c) 2012-2013, Appify Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. Unless required by appl...

If you think the Android project simple-wallpaper-extractor-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 DeAngelo Mannie/*  w  w  w . j  a v  a2  s .  c o  m*/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.nivler.android.wallpaperextractor.util;

import android.app.WallpaperManager;
import android.os.Environment;

public class Util {
  
  /* Checks if external storage is available for read and write */
  public static boolean isExternalStorageWritable() {
      String state = Environment.getExternalStorageState();
      if (Environment.MEDIA_MOUNTED.equals(state)) {
          return true;
      }
      return false;
  }

  /* Checks if external storage is available to at least read */
  public static boolean isExternalStorageReadable() {
      String state = Environment.getExternalStorageState();
      if (Environment.MEDIA_MOUNTED.equals(state) ||
          Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
          return true;
      }
      return false;
  }
  /* Checks if current wallpaper is a live wallpaper.
   * A static image of a live wallpaper cannot be saved.
   */
  public static boolean isLiveWallpaper(WallpaperManager manager) {
    if (manager.getWallpaperInfo() != null) {
      return true;
    }
    return false;
  }
}




Java Source Code List

com.nivler.android.wallpaperextractor.MainActivity.java
com.nivler.android.wallpaperextractor.helper.MediaScannerNotifier.java
com.nivler.android.wallpaperextractor.util.Util.java