約束佈局中使用include引入佈局,屬性不管用

使用約束佈局時,使用include引入佈局,layout屬性不管用,
注意:這裏要重寫android:layout_width和android:layout_height兩個屬性

<include
        android:id="@+id/task_item_devide"
        layout="@layout/devide_line"
        android:layout_width="match_parent"    //必須重寫
        android:layout_height="@dimen/dp_1"  //必須重寫
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent" />
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章