[Android] tools:ignore missingContairaints


[Android] tools:ignore missingContairaints

missingContairaints XML의 위젯의 위치를 설정해주지 않아서 뜨는 권장내용입니다. <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" tools:ignore="MissingConstraints" /> 아래와 같이 "layout_constraint" 위치들을 지정해주면 해결 됩니다. <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="pare...


#android #missingContairaints #xml #안드로이드 #위치지정

원문링크 : [Android] tools:ignore missingContairaints