Как я могу удалить ListPreference из PreferenceScreen во время выполнения?
Что-то вроде setVisibility (Visibility.GONE) в родительской строке.
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
}
// ....
}
}