Skip to content

Commit

Permalink
Merge pull request #84 from team-JMT/fix/webview_bridge
Browse files Browse the repository at this point in the history
[fix/webview_bridge]: 바텀네비게이션 Ripple Freeze 이슈 해결
  • Loading branch information
soopeach authored Sep 27, 2023
2 parents 7294092 + 334fbce commit ff1b4e2
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,22 @@ class MainActivity : BaseActivity() {
object : Animator.AnimatorListener {
override fun onAnimationStart(p0: Animator) {}
override fun onAnimationEnd(p0: Animator) {

binding.bottomNavigationView.visibility = View.GONE
}

override fun onAnimationCancel(p0: Animator) {}
override fun onAnimationRepeat(p0: Animator) {}
}
binding.bottomNavigationView.slideDown(endListener = myAnimationListener)
runOnUiThread {
binding.bottomNavigationView.slideDown(endListener = myAnimationListener)
}
}

fun slideUpBottomNavigationView() {
binding.bottomNavigationView.visibility = View.VISIBLE
binding.bottomNavigationView.slideUp()
runOnUiThread {
binding.bottomNavigationView.visibility = View.VISIBLE
binding.bottomNavigationView.slideUp()
}
}

fun changeToolbarTitle(title: String) {
Expand Down

0 comments on commit ff1b4e2

Please sign in to comment.