Align TextView with the progress of progressbar

后端 未结 2 1589
我寻月下人不归
我寻月下人不归 2021-01-22 08:27

How can I align a TextView with the progress of a horizontal ProgressBar. I want to put a TextView right above the progress position of th

2条回答
  •  盖世英雄少女心
    2021-01-22 08:51

    Calculate the x position of thumb from progressBar and apply it to textview

     var xPosition=  (((seekBar.right - seekBar.left) / seekBar.max) * seekBar.progress ) + seekBar.left
    
     progressTextView.translationX = xPosition.toFloat() - (progressTextView.width/2)
    

提交回复
热议问题