ConstraintLayout会自动将layout_width / layout_height添加到没有它的视图中

时间:2016-10-18 14:04:04

标签: android android-constraintlayout

我在样式中定义了layout_width和layout_height,所以它实际设置了,但IDE没有看到我的样式并自动完成我的代码 机器人:layout_height =" 0dp" 机器人:layout_width =" 0dp"

代码示例: 当我在设计/文本IDE之间进行构建或切换时添加到TextView 机器人:layout_height =" 0dp" 机器人:layout_width =" 0dp"

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
    android:id="@+id/iv_contact_phone"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_marginTop="15dp"
    android:src="@drawable/ic_phone"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent" />


<TextView
    android:id="@+id/tv_contact_phone"
    style="@style/FormValue"
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    app:layout_constraintLeft_toRightOf="@+id/iv_contact_phone"
    app:layout_constraintTop_toTopOf="parent" /></android.support.constraint.ConstraintLayout>

忘了提及:

compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha9'
Androd Studio 2.2.1

2 个答案:

答案 0 :(得分:0)

这听起来像个错误 - 你可以在code.google.com上提交吗?谢谢!

答案 1 :(得分:0)

我发现同样的问题,我找到了android:layout_height =&#34; 0dp&#34;是因为可见=&#34;已经消失了#34;在我的情况下添加了此视图,以删除它并以编程方式设置Visible,希望它适合您!