Android Open Source - FileRenamer Prefs






From Project

Back to project page FileRenamer.

License

The source code is released under:

License text from http://www.opensource.org/licenses/GPL-3.0 Copyright (c) 2012 Thomas Schmid, Froburgstrasse 25, 4052 Basel, Schweiz Permission is hereby granted, free of charge, to any person obta...

If you think the Android project FileRenamer 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) 2012 Thomas Schmid <tschmid35@gmail.com>
 */*from w w  w . j  av  a 2 s. c o m*/
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package com.scto.filerenamer;

import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;

public class Prefs
{
  private static final String PREFS_APP = "filerenamer";

  public static final String KEY_CHANGE_THEME = "change_theme";
  public static final String KEY_TEXT_COLOR = "text_color";
  public static final String KEY_VERSION_NAME = "version_name";
  public static final String KEY_VERSION_CODE = "version_code";
  public static final String KEY_EULA_ACCEPTED = "eula_accepted";
  public static final String KEY_SPLASH_SCREEN = "show_splash_screen";
  public static final String KEY_SPLASH_MUSIC = "play_splash_screen_sound";
  public static final String KEY_ROOT_ENABLED = "root_enabled";
  
  public static SharedPreferences getSharedPreferences( Context c )
  {
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
    return prefs;
  }

    public static boolean getThemeType( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getBoolean( KEY_CHANGE_THEME, true );
    }

    public static boolean setThemeType( Context c, boolean use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putBoolean( KEY_CHANGE_THEME, use ).commit();
    }

    public static int getTextColor( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getInt( KEY_TEXT_COLOR, -1 );
    }

    public static boolean setTextColor( Context c, int use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putInt( KEY_TEXT_COLOR, use ).commit();
    }

    public static String getVersionName( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getString( KEY_VERSION_NAME, "" );
    }

    public static boolean setVersionName( Context c, String use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putString( KEY_VERSION_NAME, use ).commit();
    }

    public static int getVersionCode( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getInt( KEY_VERSION_CODE, -1 );
    }

    public static boolean setVersionKey( Context c, int use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putInt( KEY_VERSION_CODE, use ).commit();
    }
  
    public static boolean getEulaAccepted( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getBoolean( KEY_EULA_ACCEPTED, false );
    }

    public static boolean setEulaAccepted( Context c, boolean use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putBoolean( KEY_EULA_ACCEPTED, use ).commit();
    }
  
    public static boolean getSplashScreen( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getBoolean( KEY_SPLASH_SCREEN, true );
    }

    public static boolean setSplashScreen( Context c, boolean use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putBoolean( KEY_SPLASH_SCREEN, use ).commit();
    }

    public static boolean getSplashMusic( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getBoolean( KEY_SPLASH_MUSIC, false );
    }

    public static boolean setSplashMusic( Context c, boolean use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putBoolean( KEY_SPLASH_MUSIC, use ).commit();
    }
  
    public static boolean getRootEnabled( Context c )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.getBoolean( KEY_ROOT_ENABLED, false );
    }

    public static boolean setRootEnabled( Context c, boolean use )
  {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( c );
        return prefs.edit().putBoolean( KEY_ROOT_ENABLED, use ).commit();
    }  
}




Java Source Code List

com.scto.filerenamer.AddCharsFragment.java
com.scto.filerenamer.AddCustomFragment.java
com.scto.filerenamer.AddDateFragment.java
com.scto.filerenamer.AddNumbersFragment.java
com.scto.filerenamer.AndroidFileBrowserFile.java
com.scto.filerenamer.AndroidFileBrowserListAdapter.java
com.scto.filerenamer.AndroidFileBrowser.java
com.scto.filerenamer.Eula.java
com.scto.filerenamer.ExecuteAsRootBase.java
com.scto.filerenamer.ExitDialog.java
com.scto.filerenamer.FileRenamerActivity.java
com.scto.filerenamer.HelpDialog.java
com.scto.filerenamer.ListPreferenceSummary.java
com.scto.filerenamer.MainActivity.java
com.scto.filerenamer.MimeTypes.java
com.scto.filerenamer.PreferencesActivity.java
com.scto.filerenamer.Prefs.java
com.scto.filerenamer.RemoveCharsFragment.java
com.scto.filerenamer.SeekBarPreference.java
com.scto.filerenamer.ShellCommand.java
com.scto.filerenamer.SplashActivity.java
com.scto.filerenamer.Tools.java
com.scto.filerenamer.WhatsNewDialog.java