19금 표시 제거

This commit is contained in:
2023-08-20 17:46:16 +09:00
parent 508eff2cd0
commit 3b868294b0
17 changed files with 13 additions and 175 deletions

View File

@@ -44,12 +44,6 @@ class LiveNowAdapter(
binding.tvPrice.setBackgroundResource(R.drawable.bg_round_corner_10_643bc8)
}
binding.iv19.visibility = if (item.isAdult) {
View.VISIBLE
} else {
View.GONE
}
binding.root.setOnClickListener { onClick(item) }
}
}

View File

@@ -73,12 +73,6 @@ class LiveNowAllAdapter(
)
}
binding.iv19.visibility = if (item.isAdult) {
View.VISIBLE
} else {
View.GONE
}
binding.root.setOnClickListener { onClick(item) }
}
}

View File

@@ -102,12 +102,6 @@ class LiveReservationAdapter(
"${item.price.moneyFormat()}"
}
}
binding.iv19.visibility = if (item.isAdult) {
View.VISIBLE
} else {
View.GONE
}
}
}
@@ -135,12 +129,6 @@ class LiveReservationAdapter(
} else {
View.GONE
}
binding.iv19.visibility = if (item.isAdult) {
View.VISIBLE
} else {
View.GONE
}
}
}
}