我已按照教程调用图像,但是我收到此消息错误以使用我的eclipse加载源代码。我不是什么问题。我怎么解决呢? 这是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.6">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:
android:id="@+id/userImg" />
</LinearLayout>
答案 0 :(得分:1)
错误:找不到与给定名称匹配的资源(在'srcCompat'处 值为'@ drawable-hdpi / ic_launcher')
你应该使用
android:src="@drawable/your_image"
而不是
app:srcCompat="@drawable/your_image"
网站注释:如果您一直在Eclipse
使用ADT
,请注意Android Studio
现在是Android的官方IDE,因此您应该迁移到Android Studio
以接收所有最新的IDE更新。
Eclipse
中构建的当前项目仍应运行良好,但从现在开始,利用新的Android功能将越来越难。可以使用Android Studio
菜单将项目导入File>New>Import Project
。