Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Have some troubles vith xml file. Android. Eclipse. error: Invalid start tag PreferenceScreen

Tags:

java

android

xml

Have some troubles vith xml file. Android. Eclipse. Help please) Error: error: Invalid start tag PreferenceScreen

Error notification on second line

    <?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
    xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory
        android:title="Работа с файлами">
        <CheckBoxPreference
            android:key="@string/pref_openmode"
            android:title="Открыть файл"
            android:summary="Открывать файл при запуске приложения" />
    </PreferenceCategory>

(its only a little bit part...)

like image 948
moralkill Avatar asked Nov 12 '22 13:11

moralkill


1 Answers

I think that you have your file in the wrong directory.

    <?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory
        android:title="Работа с файлами">
        <CheckBoxPreference
            android:key="@string/pref_openmode"
            android:title="Открыть файл"
            android:summary="Открывать файл при запуске приложения" />
    </PreferenceCategory>
</PreferenceScreen>
like image 171
02Anant Avatar answered Nov 15 '22 05:11

02Anant