はじめてのアンドロイドスタジオ、第4版の本で動物図鑑を作っています。
アンドロイドスタジオでimageViewが画面中央にくるように制約を追加したのですが、黄色いエラーがでます。
Android Studio version 3.3.1
kotlin
API 19 Android 4.4 (kitkat)
<androidx.constraintlayout.widget.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=".GiraffeFragment" android:id="@+id/frameLayout3">
<ImageView
android:src="@drawable/giraffe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView4" app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp" app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="8dp" app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp" app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
回答1件
あなたの回答
tips
プレビュー