Skip to content Skip to sidebar Skip to footer

Starting Custom Preferenceactivity Inside Another Preferenceactivity

Inside my Configuration activity i need to create a preference screen with a fixed View at the top showing a preview of content configured in the page. I don't want to change the m

Solution 1:

The following code on the main ConfigureActivity works however i don't know if its a clean way to do what i want. Could someone confirm?

PreferenceScreen b = (PreferenceScreen) findPreference("my_empty_preference_screen");       
b.setOnPreferenceClickListener(new OnPreferenceClickListener() {
    @Override
    public boolean onPreferenceClick(Preference preference) {
        Intent intent = new Intent(ConfigureActivity.this, ConfigureActivity.class); 
        intent.setAction("android.appwidget.action.APPWIDGET_CONFIGURE");
        ConfigureActivity.this.startActivity(intent);
        return false;
    }
});

Post a Comment for "Starting Custom Preferenceactivity Inside Another Preferenceactivity"