下記のようなエラーが出ます。
どのようにすれば実行できるようになりますでしょうか?
アドバイスをいただきたいです。
どうぞよろしくお願いたします。
java
1/Users/eeee/AndroidStudioProjects/DDDD/app/src/main/res/layout/activity_main.xml:38: AAPT: error: attribute layout_constrainEnd_toEndOf (aka com.example.data:layout_constrainEnd_toEndOf) not found. 2
activity_main.xml
java
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:layout_gravity="center" 8 tools:context=".MainActivity" 9 android:background="#000000"> 10 11 <!--loginボタン--> 12 13 <com.facebook.login.widget.LoginButton 14 android:id="@+id/login_button" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:layout_gravity="center_horizontal" 18 android:layout_marginTop="32dp" 19 app:layout_constraintEnd_toEndOf="parent" 20 app:layout_constraintStart_toStartOf="parent" 21 app:layout_constraintTop_toBottomOf="@+id/text_user" /> 22 23 <ImageView 24 android:id="@+id/image_logo" 25 android:layout_width="98dp" 26 android:layout_height="184dp" 27 android:layout_marginStart="162dp" 28 android:layout_marginLeft="162dp" 29 android:layout_marginTop="148dp" 30 android:layout_marginEnd="163dp" 31 android:layout_marginRight="163dp" 32 app:layout_constraintEnd_toEndOf="parent" 33 app:layout_constraintStart_toStartOf="parent" 34 app:layout_constraintTop_toTopOf="parent" 35 app:srcCompat="@drawable/firebase_logo" /> 36 37 <TextView <!--ここがエラーの出ている行です--> 38 android:id="@+id/text_user" 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:text="TextView" 42 app:layout_constrainEnd_toEndOf="parent" 43 app:layout_constrainStart_toStartOf="parent" 44 tools:ignore="MissingConstraints" 45 tools:layout_editor_absoluteX="176dp" 46 tools:layout_editor_absoluteY="368dp" 47 android:background="#ffffff"/> 48 49 50</androidx.constraintlayout.widget.ConstraintLayout>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/19 12:03