How can I remove ListPreference from PreferenceScreen at runtime?
Something like setVisibility(Visibility.GONE) on a parent row.
public class PreferencesActivity extends PreferenceActivity
{
protected void onConfigurationChanged(ApplicationConfiguration config)
{
// ...
if(config.actualAccounts.sie() < 1)
{
ListPreference p = (ListPreference) findPreference("account");
p.setEnabled(false);
// here I want to hide it at all
}
// ....
}
}