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