我是 android studio 的初学者,如果有人可以帮助我,我会为此感到头疼我错过了什么吗?....我有约束布局的问题,问题是我在布局中放置了一些元素(ImageView,Button 它不重要)并将其限制为父级,但是当我在模拟器中运行它时,它只是没有显示。它也没有向我显示元素下的那些按钮连接基线并删除该元素的约束。
<?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=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="343dp"
android:layout_height="118dp"
android:layout_marginTop="10dp"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_c`enter code here`onstraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:srcCompat="@tools:sample/backgrounds/scenic[7]" />
</android.support.constraint.ConstraintLayout>