如何在运行时从 PreferenceScreen 中删除 ListPreference?
父行上的 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
}
// ....
}
}