Skip to content

Commit

Permalink
[del] #98 주석 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokwanhee committed Feb 22, 2024
1 parent 65de56b commit 885b318
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,13 @@ class SampleDesignActivity : AppCompatActivity() {
binding = ActivitySampleBinding.inflate(layoutInflater)
setContentView(binding.root)

// binding.customView.setUserType(Child)
// binding.customViewOther.setUserType(Parent)

binding.customView.userType = Parent
binding.customViewOther.userType = Child

binding.leftSeekBar.setOnSeekBarChangeListener(object : SeekBar.OnSeekBarChangeListener {
override fun onProgressChanged(p0: SeekBar?, seekValue: Int, p2: Boolean) {
binding.customView.setPercent(seekValue / 50f)
binding.customView.userType = Parent
// binding.customView.userType = Child
}

override fun onStartTrackingTouch(p0: SeekBar?) {
Expand All @@ -38,7 +34,6 @@ class SampleDesignActivity : AppCompatActivity() {
override fun onProgressChanged(p0: SeekBar?, seekValue: Int, p2: Boolean) {
binding.customViewOther.setPercent(seekValue / 50f)
binding.customViewOther.userType = Child
// binding.customViewOther.userType = Parent
}

override fun onStartTrackingTouch(p0: SeekBar?) {
Expand Down

0 comments on commit 885b318

Please sign in to comment.