最近、私は制約レイアウトを使い始めましたが、今日は非常に奇妙な動作が発生しました。 fragment_holiday.xmlの出力でConstraintLayoutの代わりにRelativeLayoutをルートとして使用している場合、期待どおりの出力ですが、ConstraintLayoutの何が問題なのかを知りたいと思います。 親の幅を取る代わりに、制約レイアウトの折りたたみリサイクルビューの行アイテム
---
item_row、フラグメントのために次のように私のコードがあると私はと制約レイアウトで出力を取得しています(そして、あなたは私が共有していますスクリーンショットで見ることができるようにスクロール上、それは異なるbeheviourを示しています)- デザイン期待fragment_holiday.xml
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.thepsi.psidashboard.Fragments.HolidayFragment">
<com.thepsi.psidashboard.CustomViews.CustomDatePicker
android:id="@+id/customDatePicker_holiday"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:dateFormat="MONTH_YEAR"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycle_view_holiday"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/general_margin_eight_dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/customDatePicker_holiday" />
</android.support.constraint.ConstraintLayout>
item_holiday.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView25"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="24 - January - 2017"
android:textColor="@color/colorPrimaryDark"
/>
<TextView
android:id="@+id/textView26"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:text="Saturday"
android:layout_alignParentEnd="true"
android:textColor="@color/colorPrimaryDark"
/>
<TextView
android:id="@+id/textView27"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:text="Mahavir Jayanti"
android:textAlignment="center"
android:textColor="@android:color/black"
android:layout_below="@+id/textView25"
/>
</RelativeLayout>
誰かが私がここで行方不明です何を教えてもらえますか?
リサイクラービューの幅を確認してください。 "マッチペアレント"を与える –
@ArnoldBrownはいそれは働いた!!!!!!!しかし、なぜそれがドキュメントで書かれているのは、** MATCH_PARENTは、ConstraintLayoutに含まれるウィジェットにはお勧めできません。同様の動作は、MATCH_CONSTRAINT ** –