начальное значение в 'vmmin' не является конечным

Согласно информации, представленной о проблеме, вам нужна заключительная метка ConstraintLayout

</android.support.constraint.ConstraintLayout>

, они остаются такими, как это

<?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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:textColor="@color/colorAccent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.44" />

</android.support.constraint.ConstraintLayout>

. Возможно, вам придется перезапустить кеш кедра android перейти в файл меню> повторить кеши / перезапустить

Надеюсь, я помог

0
задан OTStats 19 January 2019 в 00:42
поделиться