I'm doing an app in which I'm using Preference and I'd like to show in PreferenceCategory only a title of several that are available, the selection of the title could be through a conditional, but how to do it, can you?
This is my Preference.xml
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="OPCION1"
android:layout="@layout/setup_txt" >
</PreferenceCategory>
<PreferenceCategory
android:title="OPCION2"
android:layout="@layout/setup_txt" >
</PreferenceCategory>
<PreferenceCategory
android:title="OPCION3"
android:layout="@layout/setup_txt" >
</PreferenceCategory>
<PreferenceCategory
android:title="OPCION4"
android:layout="@layout/setup_txt" >
</PreferenceCategory>