渲染错误;无法解析@ id / search_edit_frame

时间:2015-07-17 02:11:21

标签: android android-studio android-support-library

我遇到了无法解决的错误 @ id / search_edit_frame 我不知道为什么, 我尝试了 文件> Invalidate Caches>只需重新启动并重新启动 android studio也尝试更改渲染版本所有支持的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)

任何帮助将不胜感激..谢谢

2 个答案:

答案 0 :(得分:5)

使用

 <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" />

它应该有用

答案 1 :(得分:-1)

首先,您可以在所有xml文件中搜索 @ id / search_edit_frame ,以查看其来源。

其次,如果您确定xml中没有 @id / search_edit_frame ,那么您可以尝试删除Build文件夹中的所有文件。

尝试清理项目。