ConstraintsLayout中的ImageView会显示图片 这是一个简单的例子
这是MainActivity.XMl
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
tools:context="org.xiaojian.constraintslayouttest.MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/ic_launcher" />
</android.support.constraint.ConstraintLayout>
然后MainActivity扩展AppCompatActivity,图片可以正常显示,
但是如果MainActivity扩展了FragmentActivity,则图片无法显示
答案 0 :(得分:0)
使用android:src="@mipmap/ic_launcher"
代替app:srcCompat="@mipmap/ic_launcher"
应用:srcCompat 强>
使用AppCompat和app:srcCompat是将矢量绘图集成到应用程序中最简单的方法。
<强>机器人:SRC 强>
将drawable设置为此ImageView的内容。
查看this博文。
对于矢量绘图,使用AppCompat和app:srcCompat
,其他人使用android:src