android - How to make recycler view start adding items from center? -


  • i have recyclerview "horziontal linear layout" layout manager.
  • recycler view in frame layout, layout_gravity = "center", , layout_width="wrap_content"
  • i want recycler view start adding items center.
  • here want:

enter image description here

enter image description here

enter image description here

  • and here getting:

enter image description here

  • you can see in last image items added left. want add items center shown in first 3 images .

i had same issue , solved horizontal recyclerview:

    <android.support.v7.widget.recyclerview         android:id="@+id/recyclerview"         android:layout_width="wrap_content"         android:layout_height="68dp"         android:layout_centerhorizontal="true"         android:orientation="horizontal"         app:layoutmanager="android.support.v7.widget.linearlayoutmanager" /> 

here main part android:layout_centerhorizontal="true" , layout_width="wrap_content"


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -