From ecfab20708e87c0be2794dcdf1eed6aad9ed6060 Mon Sep 17 00:00:00 2001 From: inseonyun Date: Wed, 9 Aug 2023 21:28:50 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=EB=A6=AC=EC=82=AC=EC=9D=B4=ED=81=B4?= =?UTF-8?q?=EB=9F=AC=EB=B7=B0=20=EA=B5=AC=EB=B6=84=EC=84=A0=20=EB=84=A4?= =?UTF-8?q?=EC=9D=B4=EB=B0=8D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/created/team201/presentation/profile/ProfileActivity.kt | 2 +- .../com/created/team201/presentation/setting/SettingActivity.kt | 2 +- .../created/team201/presentation/studyList/StudyListFragment.kt | 2 +- .../presentation/studyManage/adapter/StudyManageViewHolder.kt | 2 +- .../{divider_study_list.xml => divider_recyclerview_line.xml} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename android/app/src/main/res/drawable/{divider_study_list.xml => divider_recyclerview_line.xml} (100%) diff --git a/android/app/src/main/java/com/created/team201/presentation/profile/ProfileActivity.kt b/android/app/src/main/java/com/created/team201/presentation/profile/ProfileActivity.kt index fdd03ce5e..1c6aa3c66 100644 --- a/android/app/src/main/java/com/created/team201/presentation/profile/ProfileActivity.kt +++ b/android/app/src/main/java/com/created/team201/presentation/profile/ProfileActivity.kt @@ -63,7 +63,7 @@ class ProfileActivity : BindingActivity(R.layout.activit private fun getDividerItemDecoration(): DividerItemDecoration { val dividerItemDecoration = DividerItemDecoration(this, LinearLayout.VERTICAL) - ContextCompat.getDrawable(this, R.drawable.divider_study_list)?.let { + ContextCompat.getDrawable(this, R.drawable.divider_recyclerview_line)?.let { dividerItemDecoration.setDrawable(it) } return dividerItemDecoration diff --git a/android/app/src/main/java/com/created/team201/presentation/setting/SettingActivity.kt b/android/app/src/main/java/com/created/team201/presentation/setting/SettingActivity.kt index b0bcf8cc2..d696219f9 100644 --- a/android/app/src/main/java/com/created/team201/presentation/setting/SettingActivity.kt +++ b/android/app/src/main/java/com/created/team201/presentation/setting/SettingActivity.kt @@ -55,7 +55,7 @@ class SettingActivity : BindingActivity(R.layout.activit binding.rvSetting.hasFixedSize() val decoration = DividerItemDecoration(this, DividerItemDecoration.VERTICAL) - ContextCompat.getDrawable(this, R.drawable.divider_study_list)?.let { + ContextCompat.getDrawable(this, R.drawable.divider_recyclerview_line)?.let { decoration.setDrawable(it) } diff --git a/android/app/src/main/java/com/created/team201/presentation/studyList/StudyListFragment.kt b/android/app/src/main/java/com/created/team201/presentation/studyList/StudyListFragment.kt index fb604c5be..5c5bb16eb 100644 --- a/android/app/src/main/java/com/created/team201/presentation/studyList/StudyListFragment.kt +++ b/android/app/src/main/java/com/created/team201/presentation/studyList/StudyListFragment.kt @@ -58,7 +58,7 @@ class StudyListFragment : BindingFragment(R.layout.fra private fun setUpStudyListSettings() { val dividerItemDecoration = DividerItemDecoration(context, VERTICAL) - getDrawable(requireContext(), R.drawable.divider_study_list)?.let { + getDrawable(requireContext(), R.drawable.divider_recyclerview_line)?.let { dividerItemDecoration.setDrawable(it) } diff --git a/android/app/src/main/java/com/created/team201/presentation/studyManage/adapter/StudyManageViewHolder.kt b/android/app/src/main/java/com/created/team201/presentation/studyManage/adapter/StudyManageViewHolder.kt index e8d956a1d..7e200f4e1 100644 --- a/android/app/src/main/java/com/created/team201/presentation/studyManage/adapter/StudyManageViewHolder.kt +++ b/android/app/src/main/java/com/created/team201/presentation/studyManage/adapter/StudyManageViewHolder.kt @@ -29,7 +29,7 @@ class StudyManageViewHolder( private fun setUpStudyManageList() { val dividerItemDecoration = DividerItemDecoration(parent.context, VERTICAL) - getDrawable(parent.context, R.drawable.divider_study_list)?.let { + getDrawable(parent.context, R.drawable.divider_recyclerview_line)?.let { dividerItemDecoration.setDrawable(it) } diff --git a/android/app/src/main/res/drawable/divider_study_list.xml b/android/app/src/main/res/drawable/divider_recyclerview_line.xml similarity index 100% rename from android/app/src/main/res/drawable/divider_study_list.xml rename to android/app/src/main/res/drawable/divider_recyclerview_line.xml