2016-10-18 57 views
1

我定義layout_width和layout_height的風格,所以它實際上設置,但IDE沒有看到我的風格和自動完成我的代碼以 機器人:layout_height =「0dp」 的android:layout_width = 「0dp」ConstraintLayout自動添加layout_width/layout_height到的意見沒有它

代碼例如: 當我使建立或設計/文本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> 

忘了我ntion:

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

回答

0

這聽起來像一個錯誤 - 請問您可以在code.google.com上提交嗎?謝謝!

+0

希望我做對了 https://code.google.com/p/android/issues/detail?id=225562&thanks=225562&ts=1476866784 – Nokuap

+0

太棒了!謝謝 –

0

我找到了同樣的問題,我發現android:layout_height =「0dp」被添加因爲visible =「gone」被添加了這個視圖,在我的情況下,刪除它並設置Visible以編程方式工作,希望它適用於您!