错误:(27)找不到属性' srcCompat'在包' com.example.jaisonjoseph.newsclient'

时间:2016-09-27 06:18:22

标签: android xml resources relativelayout android-cardview

enter image description here  我向ImageButton添加了CardView,当我向app:srcComapat添加ImageButton时。我收到如下错误:

  

错误:(27)找不到属性' srcCompat'在   package' com.example.jaisonjoseph.newsclient'

这是我的 content_main.xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.jaisonjoseph.newsclient.MainActivity"
    tools:showIn="@layout/app_bar_main"
    style="@style/Base.Widget.AppCompat.ButtonBar"
    android:background="#ffffff">

    <android.support.v7.widget.CardView
        android:id="@+id/card_view"
        android:layout_width="350dp"
        android:layout_height="150dp"
        app:cardCornerRadius="6dp"
        android:background="#f6f6f6"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true">

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/daily"
            android:id="@+id/imageButton3"
            android:src="@drawable/daily" />
    </android.support.v7.widget.CardView>
</RelativeLayout>

2 个答案:

答案 0 :(得分:3)

只需更改get-help show-command属性

即可
RelativeLayout

xmlns:app="http://schemas.android.com/apk/res-auto"

修改:

添加此

xmlns:app="http://schemas.android.com/apk/lib/com.example.jaisonjoseph.newsclient"

有关详细信息,请访问:No resource identifier found for attribute ' ' in package 'com.app....'

完整代码:

xmlns:app="http://schemas.android.com/apk/lib/com.example.jaisonjoseph.newsclient"

答案 1 :(得分:2)

你得到的东西似乎只是一个可以忽略的lint错误。

你可以使用:

  

工具:ignore =“MissingPrefix”

RelativeLayout

,以避免暂时看到此错误。

由于srcCompat属性实际上是在 AppCompat 库中定义的,因此请记住将 AppCompat 库添加到项目中。

<强>更新
对于另一位读者如何登陆这个帖子。

不要使用项目名称使用app的命名空间,如:

  

的xmlns:应用= “http://schemas.android.com/apk/res/com.yourproject.name”

改为使用:

  

xmlns:app =“http://schemas.android.com/apk/res-auto”。

正如https://code.google.com/p/android/issues/detail?id=9656#c71中所述:

  

“添加了对库中自定义属性的自定义视图的支持。使用自定义属性的布局必须使用命名空间URI schemas.android.com/apk/res-auto < strong>而不是包含应用程序包名称的URI。此URI在构建时将替换为特定于应用程序的URI。“

https://code.google.com/p/android/issues/detail?id=9656

了解详情