7

Я только что обновил мой android studio к 2.2 Preview 3 и пробуя новый constraint layout я поместил edittext в макете и побежал приложение на моем телефоне, но это то, что я получилAndroid Studio 2.2 Preview 3 Компоновка Ошибка

Example

i затем попытался преобразовать constraint layout еще до того, как код был до constraint layout, результаты были одинаков.

activity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
    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" 
    android:fitsSystemWindows="true" 
    tools:context="com.ellohinc.constrainttest.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

    </android.support.design.widget.AppBarLayout> 

    <include layout="@layout/content_main"/> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@android:drawable/ic_dialog_email" /> 

content_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/content_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:showIn="@layout/activity_main" 
    tools:context="com.ellohinc.constrainttest.MainActivity"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Hello World!" 
     app:layout_constraintBottom_toBottomOf="@+id/content_main" 
     app:layout_constraintLeft_toLeftOf="@+id/content_main" 
     app:layout_constraintRight_toRightOf="@+id/content_main" 
     app:layout_constraintTop_toTopOf="@+id/content_main" /> 

    </android.support.constraint.ConstraintLayout> 

Пожалуйста, любая помощь будет оценена.

+0

Можем ли мы увидеть код xml-кода? – pRaNaY

ответ

3

У меня была та же проблема. Я решил это, понизив версию градиента. Тем не менее, это остановит мгновенный запуск.

+0

Нижняя версия. Я сделал это 2.1.0 –

+0

Спасибо, я сменил мой на 2.1.2 – king

0

В вашей версии gradle смену изменения градиента под вашу зависимость для более низкой версии, такой как com.android.tools.build:gradle:2.0.0. Это работает для меня.

Смежные вопросы