Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you are looking for something like this</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:key="NotifSettings" android:title="Notification Settings"&gt; &lt;PreferenceCategory android:title="Notification Settings"&gt; &lt;CheckBoxPreference android:key="NotifyOption" android:title="Notification Status" android:defaultValue="true" android:summaryOn="Notifications are Enabled." android:summaryOff="Notifications are Disabled." android:persistent="true" /&gt; &lt;Preference android:title="XXXX" android:dependency="NotifyOption" android:summary="xxxxxx" android:key="Xxx" /&gt; &lt;/PreferenceCategory&gt; &lt;PreferenceCategory android:title="YYYYY"&gt; &lt;PreferenceScreen android:title="Configure Notifications" android:summary="yyyyy"&gt; &lt;CheckBoxPreference android:key="aa" android:title="aaaaa" android:defaultValue="true" android:summary="aaaa" /&gt; &lt;CheckBoxPreference android:key="bb" android:title="bbbbb" android:defaultValue="true" android:summary="bbbb." /&gt; ... &lt;ListPreference android:title="zzz" android:summary="zzzz" android:key="zz" android:defaultValue="0" android:entries="@array/OverDesc" android:entryValues="@array/OverValues" /&gt; &lt;/PreferenceScreen&gt; &lt;/PreferenceCategory&gt; &lt;PreferenceCategory android:title="Alert Type"&gt; &lt;CheckBoxPreference android:key="AlertVibr" android:title="Vibrate" android:defaultValue="true" android:summaryOn="Vibration Turned ON" android:summaryOff="Vibration Turned OFF" /&gt; &lt;CheckBoxPreference android:key="AlertSound" android:title="Sound" android:defaultValue="true" android:summaryOn="Sound Turned ON" android:summaryOff="MUTE" /&gt; &lt;/PreferenceCategory&gt; </code></pre> <p></p> <p>But what I didnt get is that your want to return to the previous preference screen, without pressing back button. Can you shed some more light on that??</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload