Skip to content

Commit

Permalink
design : 리사이클러뷰 구분선 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
m6z1 committed Apr 2, 2024
1 parent 985c78f commit 20de40d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ class NoticeFragment : BaseFragment<FragmentNoticeBinding, NoticeViewModel>() {
this.layoutManager = LinearLayoutManager(requireActivity())
this.itemAnimator = null
this.setHasFixedSize(true)
this.addItemDecoration(DividerItemDecoration(requireContext(), 1))
}
setupTabLayout()
setupInfinityScroll()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,6 @@ class SearchFragment : BaseFragment<FragmentSearchBinding, SearchViewModel>() {
layoutManager = LinearLayoutManager(requireActivity())
itemAnimator = null
setHasFixedSize(true)
addItemDecoration(
DividerItemDecoration(
requireContext(), DividerItemDecoration.VERTICAL
)
)
}
}

Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/layout/item_notice.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
android:id="@+id/cl_notice_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:backgroundTint="@color/white">

<TextView
Expand Down

0 comments on commit 20de40d

Please sign in to comment.