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 top.itmp.preferencetest.AppCompatPreferenceActivity.java

/**
 * A {@link android.preference.PreferenceActivity} which implements and proxies the necessary calls
 * to be used with AppCompat.
 *
 * This technique can be used with an {@link android.app.Activity} class, not just
 * {@link android.preference.PreferenceActivity}.

From source file com.packenx.PythonInstaller.AppCompatPreferenceActivity.java

/**
 * A {@link android.preference.PreferenceActivity} which implements and proxies the necessary calls
 * to be used with AppCompat.
 * <p/>
 * This technique can be used with an {@link android.app.Activity} class, not just
 * {@link android.preference.PreferenceActivity}.

From source file com.jean.farCam.SettingsActivity.java

public class SettingsActivity extends PreferenceActivity {

    final int DEFAULT_X_RESOLUTION = 640;
    final int DEFAULT_Y_RESOLUTION = 480;
    final int DEFAULT_PORT = 1234;

From source file pl.bcichecki.rms.client.android.activities.SettingsActivity.java

public class SettingsActivity extends PreferenceActivity {

    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    public static class ServerPreferencesFragment extends PreferenceFragment {

        @Override

From source file settings.Settings_Account.java

public class Settings_Account extends PreferenceActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

From source file com.netthreads.traffic.SettingsActivity.java

/**
 * Settings Activity.
 * <p/>
 * Note: As long as the user makes any change to the settings we will signal
 * back to the calling activity that something has changed by passing RESULT_OK
 * in the return Intent. This is a bit naive as we should really do some sort of

From source file com.android.leanlauncher.SettingsActivity.java

/**
 * Settings for launcher
 */
public class SettingsActivity extends PreferenceActivity
        implements SharedPreferences.OnSharedPreferenceChangeListener {
    private static final String TAG = "SettingsActivity";

From source file com.fusionx.lightirc.ui.SettingsActivityBase.java

/**
 * A {@link android.preference.PreferenceActivity} which implements and proxies the necessary calls
 * to be used with AppCompat.
 *
 * This technique can be used with an {@link android.app.Activity} class, not just
 * {@link android.preference.PreferenceActivity}.

From source file org.connectbot.AppCompatPreferenceActivity.java

public abstract class AppCompatPreferenceActivity extends PreferenceActivity {
    private AppCompatDelegate mDelegate;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        getDelegate().installViewFactory();

From source file org.getlantern.firetweet.activity.BasePreferenceActivity.java

public abstract class BasePreferenceActivity extends PreferenceActivity implements Constants, IThemedActivity {

    private int mCurrentThemeResource;

    @Override
    public boolean onMenuOpened(int featureId, Menu menu) {