Example usage for android.preference PreferenceActivity subclass-usage

List of usage examples for android.preference PreferenceActivity subclass-usage

Introduction

In this page you can find the example usage for android.preference PreferenceActivity subclass-usage.

Usage

From source file com.brewcrewfoo.performance.activities.PCSettings.java

public class PCSettings extends PreferenceActivity
        implements Constants, ActivityThemeChangeInterface, OnPreferenceChangeListener {

    SharedPreferences mPreferences;
    private CheckBoxPreference mLightThemePref, mInitd;
    private ColorPickerPreference mWidgetBgColorPref;

From source file org.peterbaldwin.vlcremote.app.PickServerActivity.java

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        PickServerFragment fragment = findOrReplaceFragment(android.R.id.content, TAG, PickServerFragment.class);
        getActionBar().setDisplayHomeAsUpEnabled(true);

        mPort = getIntent().getIntExtra(PortSweeper.EXTRA_PORT, 0);

From source file com.snt.bt.recon.activities.MyPreferencesActivity.java

public class MyPreferencesActivity extends PreferenceActivity {

    //For Device ID
    static TelephonyManager telephonyManager;

    private static Activity mContext;

From source file com.notifry.android.SourceEditor.java

public class SourceEditor extends PreferenceActivity {
    /**
     * Send a request to the backend to delete the source.
     * 
     * @param source
     */

From source file com.newtifry.android.SourceEditor.java

public class SourceEditor extends PreferenceActivity {
    private final SourceEditor thisActivity = this;
    private NewtifrySource source = null;
    private ORMPreferencesMapper preferenceMapper;

    static List<String> togglePreferences = new ArrayList<String>();

From source file com.bt.heliniumstudentapp.SettingsActivity.java

public class SettingsActivity extends PreferenceActivity { //TODO PreferenceFragment
    private static AppCompatActivity mainContext;

    private static Toolbar toolbarTB;

    private static boolean pendingRestart;

From source file fr.pasteque.client.Configure.java

@SuppressWarnings("deprecation")
public class Configure extends PreferenceActivity implements Preference.OnPreferenceChangeListener {

    public static final int STATUS_ACCOUNT = 0;
    public static final int STATUS_DEMO = 1;
    public static final int STATUS_NONE = 2;

From source file de.j4velin.wifiAutoOff.Preferences.java

public class Preferences extends PreferenceActivity {

    private final static int[] time_values = { 5, 15, 30, 60, 120, 300, 600 };

    private StatusPreference status;

From source file jackpal.androidterm.TermPreferences.java

public class TermPreferences extends PreferenceActivity {
    private static final String STATUSBAR_KEY = "statusbar";
    private static final String ACTIONBAR_KEY = "actionbar";
    private static final String CATEGORY_SCREEN_KEY = "screen";
    static final String FONTPATH = Environment.getExternalStorageDirectory().getPath() + "/fonts";
    private static final String CATEGORY_TEXT_KEY = "text";

From source file com.wanikani.androidnotifier.SettingsActivity.java

/**
 * The activity that handles the preferences menu.
 * In addition to the standard behaviour, whenever credentials or notification settings
 * are changed, we send an intent to the {@link DashboardActivity} to trigger refresh and
 * start/stop of the notification service. 
 */