1

スタイルでlayout_widthとlayout_heightを定義しているので、実際に設定されていますが、IDEは私のスタイルを認識せず、Android:layout_height="0dp" android:layout_width="0dp"でコードをオートコンプリートします

コード例: ビルドまたはデザイン/テキスト IDE の切り替え時に、TextView android:layout_height="0dp" android: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
4

2 に答える 2