それが実際に設定して、私は、スタイルでlayout_widthとlayout_height定義しますが、IDEが私のスタイルを参照して アンドロイドで私のコードを自動補完いけないなし:layout_height =「0dp」 アンドロイド:layout_width = "0dp"ConstraintLayoutは自動的に追加layout_width/layout_heightビューにそれ
コード例:layout_height = "0dp" アンドロイド: 私はデザイン/テキストIDEは、TextViewの に追加する間アンドロイド構築したり、切り替え作る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
希望でした。 https://code.google.com/p/android/issues/detail?id=225562&thanks=225562&ts=1476866784 – Nokuap
素晴らしいです!ありがとうございました –