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
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)
In the parent layout which contains your TextView and Progress bar set the gravity to center so that it will keep both of them center alligned.
<LinearLayout
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_width="wrap_content"
android:text="Hiee"/>
<ProgressBar
android:layout_width="wrap_content"
android:layout_width="wrap_content"/>
</LinearLayout>