how to set progress bar with rounded starting point in android layout? - android

I am trying to create a progress bar using default progress bar given in android , I achieved 80% of that required design but i cannot find a code to finish the required design.
this is a required design
given design
i need to bring the rounded part [highlighted in blue ] in my progress bar
finished design
xml code
<ProgressBar
android:id="#+id/ww_progress_bar"
android:visibility="visible"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#drawable/circular_shape"
android:progressDrawable="#drawable/circular_progress_bar"
android:textAlignment="center" />
KT class
binding.wwProgressBar.visibility = VISIBLE
binding.wwProgressBar.setProgress(40)
binding.wwProgressBar.max = progressMax
is it possible to bring the required design? can anyone help to finish this design?

you need to use seek bar for it
use custom thumb for it
or
for easy implementation
you can use gihub library
https://github.com/tankery/CircularSeekBar

you should set thumb in your ProgressBar
android:thumb="#drawable/thumb_seekbar"
you can use this link for more information

Related

How to create custom progress bar with dynamic width

I have to create horizontal progress bar layout design. the challenges is I have to update width of progress bar according to percentage. Second challenge is I have to update color code of progress bar according to percentage. And I have to show percentage view/ text view at end of the progress bar.
Please help to solve this layout design.
For that I have tried default progress bar but its not working may be I missing something.
You can Use
1. LinearProgressIndicator google material view
Gradle - implementation 'com.google.android.material:material:1.4.0'
Code in xml:
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="#+id/progress1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:trackColor="#color/white"
app:indicatorColor="#color/teal_200"
app:trackThickness="30dp"
android:progress="20"
android:layout_margin="20dp"/>
Set progress to LinearProgressIndicator in Activity class
progress1.setProgress(30);
2. Check this github project - https://github.com/MackHartley/RoundedProgressBar

Non custom drawable determinate circular ProgressBar per material guidelines

I am trying to use native Android SDK to create the circular determinate progress bar seen here:
https://material.io/design/components/progress-indicators.html#linear-progress-indicators
I have been reading the docs here:
https://developer.android.com/reference/android/widget/ProgressBar.html
But I can't figure it out. It seems determinate is only able to be used with horizontal progress bar.
I found this stackoverlfow topic here - Android Circular Determinate ProgressBar - but it ussing a custom drawable. Because we can make an indetermiante circular spinner as easily as this:
<ProgressBar
android:id="#+id/determinateBar"
style="#android:style/Widget.ProgressBar.Normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"/>
I was hoping to just add android:progress="1" and android:indeterminate="false" to get the circular determinate spinner we see above but this is not working.

How to create circle progressBar on Android Wear

How can i create circle progress bar on wear border like on video(1:30)? This is built-in widget or custom? I didn't find any information about this.
screen from video
Checkout the DelayedConfirmationView from wearable support library.
If you scroll down about half way through this page you'll see the XAML for the Circular Progress Bar:
https://developer.android.com/reference/android/widget/ProgressBar.html
<ProgressBar
android:id="#+id/indeterminateBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
The IndeterminateBar is default to Circle as it's undefined the actual 'Progress'

Android Circular Progress Bar (Material Design) change color

I need to change the color of the ProgressBar element in a Lollipop (API 21) app.
To be more clear, i mean, for example, to the Youtube mobile app circular progress bar. I need, for example, to make the color of the progress bar red.
I've seen over the internet some examples that use a drawable.xml file but all of theme modify also the animation style of the progress bar. I'd like to maintain the Lollipop/Material Design default animation.
Thanks to all.
Use "src_in" for the indeterminateTintMode and set indeterminateTint to the color you wish to change the progress bar to.
<ProgressBar
android:id="#+id/progressBarSpinner"
android:layout_height="75dp"
android:layout_width="75dp"
android:layout_gravity="center"
android:indeterminateTint="#color/red"
android:indeterminateTintMode="src_in"/>
I just put it in the design view using the following proprieties in Android Studio. Works for me anyway
Design
indeterminateTint = your color
indeterminateTintMode = multiply
Text
<ProgressBar
android:id="#+id/progressBarSpinner"
android:layout_height="75dp"
android:layout_width="75dp"
android:layout_gravity="center"
android:indeterminateTint="#color/accent_material_dark"
android:indeterminateTintMode="multiply"/>

How to show a Horizontal Android Indeterminate Progress Bar

How to show an indeterminate horizontal progress bar in android? The animation of the progress bar should start from 0 to 100 and then go back from 100 to 0 continuously. I am not looking for the wheel progress bar.
I already knew that setIndeterminate will give an infinite horizontal progress bar. But it will be similar to the loading wheel, except that it will be horizontal. If you see my question I was looking for horizontal bar which starts from 0 and goes all the way to 100 (a gradual increase). If you want to achieve this in Android, you must use your progress bar as below:
<ProgressBar
android:id="#+id/progress_horizontal"
android:indeterminateOnly="false"
android:indeterminateDrawable="#drawable/progress_indeterminate_horizontal"
android:progressDrawable="#drawable/progress_horizontal"
android:minHeight="24dip"
android:maxHeight="24dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
As I wanted to change the background of my progress bar, I changed the ProgressDrawable and IndeterminateDrawable. The original drawables are located under frameworks/base/core/res/res/drawable. Copy them to your project and change the color according to your needs.
Create a thread which updates the progress count and does a Thread.Sleep. Then it sends the message to the Handler which will update the progress bar in UI thread.
Use the method setIndeterminate of ProgressBar:
android.widget.ProgressBar bar = new android.widget.ProgressBar(context);
bar.setIndeterminate(true);
But yeah, you could have found this pretty quickly in the developer docs.
http://developer.android.com/reference/android/widget/ProgressBar.html#setIndeterminate%28boolean%29
Maybe a bit late, but you can do something like this:
<ProgressBar
android:id="#+id/progress"
android:layout_width="match_parent"
android:layout_height="10dp"
android:indeterminate="true"
style="?android:attr/progressBarStyleHorizontal" />
Hope it helps someone!
To expand on Vinoth Answer, here is a ready code:
<ProgressBar
android:id="#+id/progressBarLoadingRecite"
android:indeterminateDrawable="#android:drawable/progress_indeterminate_horizontal"
android:minHeight="24dip"
android:layout_marginTop="20dip"
android:indeterminate="true"
android:maxHeight="24dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
In the xml defining your progress bar, you can add
style="#android:style/Widget.ProgressBar.Horizontal"

Categories

Resources