我向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>
答案 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。“