mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
<PreferenceCategory app:title="@string/category_header_title">
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="sponsorblock_enabled_key"
|
||
|
app:title="@string/sponsorblock_state"/>
|
||
|
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
<PreferenceCategory app:title="@string/category_segments">
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="sponsors_category_key"
|
||
|
app:title="@string/category_sponsor"
|
||
|
app:summary="@string/category_sponsor_description"/>
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="selfpromo_category_key"
|
||
|
app:title="@string/category_selfpromo"
|
||
|
app:summary="@string/category_selfpromo_description"/>
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="interaction_category_key"
|
||
|
app:title="@string/category_interaction"
|
||
|
app:summary="@string/category_interaction_description"/>
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="intro_category_key"
|
||
|
app:title="@string/category_intro"
|
||
|
app:summary="@string/category_intro_description"/>
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
app:key="outro_category_key"
|
||
|
app:title="@string/category_outro"
|
||
|
app:summary="@string/category_outro_description"/>
|
||
|
|
||
|
</PreferenceCategory>
|
||
|
</androidx.preference.PreferenceScreen>
|