Ошибка рендеринга; не удалось разрешить @id/search_edit_frame

У меня есть ошибка, которая говорит, что не может решить @id/search_edit_frame Я не знаю, почему, Я попробовал Файл > Invalidate Caches > Just Restart и перезапустил. Студия Android также попыталась изменить версию рендеринга на все мои поддерживаемые api..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   myapp="http://schemas.android.com/apk/res-auto"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
   <android.support.v7.widget.SearchView
      android:id="@+id/svSearch"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:textSize="25sp"
      android:textColor="@color/textDefault"
       myapp="@string/search_hint"
       myapp="false" />
</LinearLayout>

Я использую Android Studio 1.2.2 и уверен, что он компилирует android.support.v7.widget(AppCompat)

любая помощь будет оценена. спасибо

Ответ 1

Используйте

 <SearchView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/searchView"
    android:iconifiedByDefault="true"
    android:queryHint="Search"
    android:layout_centerHorizontal="true" />

он должен работать

Ответ 2

Во-первых, вы можете искать @id/search_edit_frame во всем своем XML файле, чтобы проверить, откуда он.

Во-вторых, если вы уверены, что в вашем xml нет @id/search_edit_frame, вы можете попытаться удалить все файлы в своей папке Build.

Попробуйте также очистить проект.