any layout manager for ConstraintLayout?
No. still not. Just use LinearLayoutManager if you only want to use RecyclerView.
You could add a ConstraintLayout to a LinearLayout like this.
<LinearLayout 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:id="@+id/recycleritem_id"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="8dp"
android:gravity="start"
android:orientation="horizontal"
android:clickable="true"
android:background="?attr/selectableItemBackground">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="22dp"
android:text="TextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>