parent
b95b77bcb9
commit
206fc398c6
|
@ -40,7 +40,7 @@ android {
|
|||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 72
|
||||
versionCode 73
|
||||
versionName "1.11.2"
|
||||
}
|
||||
|
||||
|
|
|
@ -180,7 +180,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
|
|||
.setIndicatorVisibility(View.GONE)
|
||||
.setIndicatorSliderColor(
|
||||
ContextCompat.getColor(requireContext(), R.color.color_909090),
|
||||
ContextCompat.getColor(requireContext(), R.color.color_9970ff)
|
||||
ContextCompat.getColor(requireContext(), R.color.color_3bb9f1)
|
||||
)
|
||||
.setIndicatorSliderWidth(4f.dpToPx().toInt(), 10f.dpToPx().toInt())
|
||||
.setIndicatorHeight(4f.dpToPx().toInt())
|
||||
|
@ -487,7 +487,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
|
|||
.setIndicatorVisibility(View.GONE)
|
||||
.setIndicatorSliderColor(
|
||||
ContextCompat.getColor(requireContext(), R.color.color_909090),
|
||||
ContextCompat.getColor(requireContext(), R.color.color_9970ff)
|
||||
ContextCompat.getColor(requireContext(), R.color.color_3bb9f1)
|
||||
)
|
||||
.setIndicatorSliderWidth(4f.dpToPx().toInt(), 10f.dpToPx().toInt())
|
||||
.setIndicatorHeight(4f.dpToPx().toInt())
|
||||
|
|
|
@ -26,7 +26,7 @@ class LiveTagAdapter(
|
|||
fun bind(item: GetLiveTagResponse) {
|
||||
if (selectedTags.contains(item.tag)) {
|
||||
binding.ivTagChecked.visibility = View.VISIBLE
|
||||
binding.tvTag.setTextColor(ContextCompat.getColor(context, R.color.color_9970ff))
|
||||
binding.tvTag.setTextColor(ContextCompat.getColor(context, R.color.color_3bb9f1))
|
||||
isChecked = true
|
||||
} else {
|
||||
binding.ivTagChecked.visibility = View.GONE
|
||||
|
@ -50,7 +50,7 @@ class LiveTagAdapter(
|
|||
binding.tvTag.setTextColor(
|
||||
ContextCompat.getColor(
|
||||
context,
|
||||
R.color.color_9970ff
|
||||
R.color.color_3bb9f1
|
||||
)
|
||||
)
|
||||
} else {
|
||||
|
|
|
@ -23,7 +23,7 @@ class MemberTagAdapter(
|
|||
fun bind(item: MemberTagResponse) {
|
||||
if (selectedTags.contains(item.tag)) {
|
||||
binding.ivTagChecked.visibility = View.VISIBLE
|
||||
binding.ivTag.setBackgroundResource(R.drawable.bg_round_corner_30_9970ff)
|
||||
binding.ivTag.setBackgroundResource(R.drawable.bg_round_corner_30_3bb9f1)
|
||||
isChecked = true
|
||||
} else {
|
||||
binding.ivTagChecked.visibility = View.GONE
|
||||
|
@ -44,7 +44,7 @@ class MemberTagAdapter(
|
|||
if (onItemClick(item.tag, isChecked)) {
|
||||
if (isChecked) {
|
||||
binding.ivTagChecked.visibility = View.VISIBLE
|
||||
binding.ivTag.setBackgroundResource(R.drawable.bg_round_corner_30_9970ff)
|
||||
binding.ivTag.setBackgroundResource(R.drawable.bg_round_corner_30_3bb9f1)
|
||||
} else {
|
||||
binding.ivTagChecked.visibility = View.GONE
|
||||
binding.ivTag.background = null
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
<corners android:radius="30dp" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/color_9970ff" />
|
||||
android:color="@color/color_3bb9f1" />
|
||||
</shape>
|
|
@ -100,7 +100,7 @@
|
|||
android:gravity="center"
|
||||
android:paddingVertical="16dp"
|
||||
android:text="취소"
|
||||
android:textColor="@color/color_9970ff"
|
||||
android:textColor="@color/color_3bb9f1"
|
||||
android:textSize="18.3sp" />
|
||||
|
||||
<LinearLayout
|
||||
|
|
Loading…
Reference in New Issue