我的进度条按递减顺序倒数。我想在进度条的中间显示textview。
在内部相对布局中,我使用progressbar
和text view
作为 -
<ProgressBar android:id="@+id/progressBarToday"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:indeterminate="false"
android:max="60"
android:progress="45"
android:progressDrawable= "@drawable/circular_progress_bar" />
<TextView android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true" />