gpt4 book ai didi

java - 错误 : no resource identifier for attribute 'srcCompat'

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:35:06 24 4
gpt4 key购买 nike

我在 @drawable 文件夹中使用复制+粘贴添加了 2 张图像,但出现错误

 Error:(25) No resource identifier found for attribute 'srcCompat' in package 'com.example.francydarkcool.maps'

我添加了:

defaultConfig {
vectorDrawables.useSupportLibrary = true;
...
}

在 build.gradle 中

还有:

    ImageView img1 = new ImageView(this);
img1.setImageResource(R.drawable.cascada3);
setContentView(img1);

ImageView img2 = new ImageView(this);
img2.setImageResource(R.drawable.cascada1);
setContentView(img2);

在我的 .java 文件中。

这是我的 activity_cascada_urlatoarea.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#479fc7"
android:orientation="vertical"
android:weightSum="480">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="1">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:layout_weight="1"
android:orientation="vertical" >


<ImageView
android:layout_width="wrap_content"
android:layout_height="227dp"
app:srcCompat="@drawable/cascada3"
android:id="@+id/imageView5"
android:layout_weight="0.50"
/>

<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
app:srcCompat="@drawable/cascada1"
android:id="@+id/imageView7"
android:layout_weight="0.33"
/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="68dp"
android:orientation="horizontal"
android:weightSum="1">

<Button
android:text="Back"
android:layout_width="118dp"
android:layout_height="29dp"
android:id="@+id/button2"
android:background="@color/cast_mini_controller_main_background"
android:textSize="14sp"
android:textStyle="normal|bold"
android:textAlignment="center"
android:layout_marginTop="30dp"
android:onClick="backbttn"
android:layout_marginLeft="20dp"/>

<Button
android:text="Next"
android:layout_width="118dp"
android:layout_height="29dp"
android:id="@+id/button8"
android:background="@color/cast_mini_controller_main_background"
android:textAlignment="center"
android:textStyle="normal|bold"
android:layout_weight="0.16"
android:layout_marginTop="30dp"
android:layout_marginLeft="110dp"
android:onClick="nextbttn"/>

</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>

如果我尝试改变

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

xmlns:app="http://schemas.android.com/apk/lib/com.app.chasebank"

我没有收到任何错误,但没有显示任何图片...

请帮忙。

最佳答案

确保在您应用的 build.gradle 文件中,dependency .. 您正在使用最新版本的支持库(任何版本 23.3+ 都可以使用)。

compile 'com.android.support:appcompat-v7:24.1.1'

然后清理并重建项目。

关于java - 错误 : no resource identifier for attribute 'srcCompat' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38695392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com