我定義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
希望我做對了 https://code.google.com/p/android/issues/detail?id=225562&thanks=225562&ts=1476866784 – Nokuap
太棒了!謝謝 –