I have the mic icon and surrounding the mic icon, I need to place the Progress Bar to handle some running process like below:
<ImageView android:id="@+id/iv_mic_movable" android:layout_width="60dp" android:layout_height="60dp" android:layout_gravity="center_horizontal" android:layout_marginTop="68dp" android:src="@drawable/record" /> <ProgressBar android:id="@+id/pb_assist" style="?android:attr/progressBarStyleLarge" android:layout_width="90dp" android:layout_height="90dp" android:layout_gravity="center_horizontal" android:layout_marginTop="53dp" android:visibility="gone" /> The above code shows the UI as follows:
I want to show the progress bar like this, But this progress is very Thick. How to make it somewhat thinner with only 1dp?
