就是我在用ImageView时,在Design界面不显示,用虚拟机打开也会报错,有人知道是怎么回事吗
这是代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/test7_ImV1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_weight="1"
android:scaleType="fitXY"
android:src="@drawable/cat1"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/test7_btn1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="资源图片"
android:onClick="btn"/>
<Button
android:id="@+id/test7_btn2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="在线图片"
android:onClick="btn"/>
<Button
android:id="@+id/test7_btn3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="绘制图片"
android:onClick="btn"/>
</ImageView>
</LinearLayout>
这是Design界面