ExpandableCardView icon indicating copy to clipboard operation
ExpandableCardView copied to clipboard

RecycleView - Horizontal Mode

Open lucazin opened this issue 2 years ago • 0 comments

<androidx.constraintlayout.widget.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white">

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/recycleSubscription"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0" />

</androidx.constraintlayout.widget.ConstraintLayout>

when i put horizontal in layout manager not work.. just vertical inside the the view how can i fix ?

lucazin avatar Jun 01 '23 15:06 lucazin