PreferenceFragmentCompat kullanıyorsanız , görünürlüğü xml olarak ayarlayabilirsiniz.
Xml'nizdeki tercihler otomatik olarak AppCompat sürümlerine dönüştürülecektir. Daha sonra xml'nizdeki ' app: isPreferenceVisible ' özelliğini kullanabilirsiniz
preferences.xml
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<CheckBoxPreference
android:defaultValue="false"
android:key="show.navigation"
android:title="Show navigation"
app:isPreferenceVisible="false" />
...
Özellik https://developer.android.com/guide/topics/ui/settings/components-and-attributes adresinde belgelenmiştir.
Ekleme https://developer.android.com/guide/topics/ui/settings/#inflate_the_hierarchy adresindePreferenceFragmentCompat
belgelenmiştir.
Misal:
public class MySettingsActivity extends AppCompatActivity {
public static class MySettingsFragment extends PreferenceFragmentCompat {
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
setPreferencesFromResource(R.xml.preferences, rootKey);
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.settings_container, new MySettingsFragment())
.commit();
}
}