在Android Studio上,我所做的就是创建一个空白的Android项目,并将一个jpg图像添加到res / drawable,名为mllogo.jpg。然后我将ImageView拖动到活动的设计器视图中,并从drawable中选择图像。当我尝试运行它时,我明白了:
hash(frozenset(location.items()))
我不确定我做错了什么。我只是将ImageView拖到布局上。这里发生了什么?
这是活动xml:
No resource identifier found for attribute 'srcCompat' in package 'com.mysite.mysiteandroid'
将ImageView更改为此功能:
<?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:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="io.testapp.myapplication.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" android:id="@+id/textView"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" app:srcCompat="@drawable/mllogo"
android:layout_marginLeft="29dp" android:layout_marginStart="29dp" android:layout_marginTop="73dp"
android:id="@+id/imageView" android:layout_below="@+id/textView" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>
换句话说,删除<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_below="@+id/textView"
android:layout_toRightOf="@+id/textView" android:layout_toEndOf="@+id/textView"
android:layout_marginLeft="63dp" android:layout_marginStart="63dp" android:layout_marginTop="166dp"
android:id="@+id/imageView2"
android:background="@drawable/mllogo"
/>
属性可以消除错误。但为什么?我没有添加该属性。当我添加ImageView时,它是由Android Studio生成的。
答案 0 :(得分:0)
您应该将Android Support library添加到项目中。为此,请将编译行添加到build.gradle文件(应用程序级别):
dependencies {
compile 'com.android.support:appcompat-v7:25.1.1' //Your library version might not match, so change the number appropriately
}