blob: 8c646a74424ac3b1f84250e0f4232bcb10773941 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="UTF-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="myanimelist.net Account">
<EditTextPreference android:title="Username" android:key="MAL_USERNAME" android:summary="Please enter your myanimelist.net Username.">
</EditTextPreference>
<EditTextPreference android:title="Password" android:key="MAL_PASSWORD" android:password="true" android:summary="Please enter your myanimelist.net Password.">
</EditTextPreference>
</PreferenceCategory>
<!-- <PreferenceCategory android:title="Application">
<ListPreference android:title="Startscreen" android:key="STARTSCREEN" android:entries="@array/screen_names" android:entryValues="@array/screen_values" android:defaultValue="@raw/screen_anime">
</ListPreference>
</PreferenceCategory>-->
</PreferenceScreen>
|