I've seen in the progress bar api, there is a property for 'backgroundImage'. Is there a way in titanium to create a custom progress bar? If I have two images? Or has anyone heard of a module which could let me do such a thing?
Related
Does anyone know how to Create a Custom Progress Bar like Scanning for Devices. I am currently creating my own app and it has a function with Searching for Device, I want to show a loading while searching but instead of progress bar or circle progress i want to show like the below image:
Sample Searching 1 Sample Searching 2
Its feels like it is Searching for Device and I want to have it instead of Progress Bar. If Someone know how to create this or Library for this it would be help for me.
I'm not really sure what they called on this but I'm hoping someone can help me.
Here is a library you can use to accomplish similar effect: jfabrix101/RadarCustomVIew
I find the default Android progress bar very thick when large, is there anyway to make the bar thinner in the circular indetermindate.
I dont want to use a custom drawable if possible. It always slows things down and gives a two two gradient I dont like
I don't think it's possible without using custom drawables. As an alternative, you can use a third-party library, such as CircularProgressView, to create a customizable Material progress indicator.
I want to create custom progress widgets as shown in the image. After some research I found:
For needle gauge i can modify this widget
For Horizontal Progress meters i should customize the android native progress bar.
For Water indicator i should create a custom widget using android canvas.
My Question is: Am I using the correct way to create and implement these widgets? Or Any better recommendations or tutorials which you think might help me create these especially the "Water Indicator" and Customizing the Android Native progress bar.
Thanks.
how i can make a consumption bar?
I tried using seekbar but its not the expected result so whats the best way to do it?
Im adding an image where this bar show up as example
im using eclipse and android sdk plugin
What you are looking for is the ProgressBar.
ProgressBar Docs
I need help in doing a custom progress bar.
I would like to change the stock android progress bar like this one:
http://i56.tinypic.com/dlgbae.jpg
To something like this or any other shape:
http://i52.tinypic.com/2r750dh.jpg
Can someone point me to the right direction, please?
Thanks
You need to load different Drawable for the progress bar
Simple way to do this is just using
android:progressDrawable="#drawable/myprogbar_new_drawable"
Either put PNG in res/drawable folder in your project or create your own xml with specify colors/gradients/shapes etc.