简体   繁体   中英

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

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...)

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>
    <?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>

The above is correct u should place this xml file in the values which is under res folder.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM