728x90

xml에서 리사이클러뷰를 배치하면

이런식으로 보이는데, 배치할 item의 리스트를 보고싶을 때,

        tools:itemCount="20" //보여줄 item 개수 
        tools:listitem="@layout/item_category" //item Layout 
        
        //이 부분은 리사이클러뷰를 가로 스크롤일 때 주는 옵션 
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
        android:orientation="horizontal"

 

속성을 지정해주면 아래 사진처럼 아이템 목록을 볼 수 있다. 

 

+ Recent posts