41 lines
No EOL
1.1 KiB
XML
41 lines
No EOL
1.1 KiB
XML
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
>
|
|
|
|
<Preference
|
|
android:layout="@layout/fragment_settings"/>
|
|
|
|
<Preference />
|
|
|
|
<Preference
|
|
app:key="music_path"
|
|
app:allowDividerAbove="true"
|
|
app:icon="@drawable/ic_music_downloaded"
|
|
app:title="@string/music_directory" />
|
|
|
|
<Preference
|
|
app:key="video_path"
|
|
app:icon="@drawable/ic_video_downloaded"
|
|
app:title="@string/video_directory" />
|
|
|
|
<Preference
|
|
app:key="update"
|
|
app:allowDividerAbove="true"
|
|
app:icon="@drawable/ic_update"
|
|
app:summary="@string/ytdl_update_hint"
|
|
app:title="@string/update_ytdl" />
|
|
|
|
<Preference
|
|
app:key="rreth"
|
|
app:allowDividerAbove="true"
|
|
app:icon="@drawable/ic_code"
|
|
app:summary="https://github.com/deniscerri/ytdlnis"
|
|
app:title="@string/source_code">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis"
|
|
/>
|
|
</Preference>
|
|
|
|
</PreferenceScreen> |