Hi I am searching for the seek bar in titanium just like android,But i have not come across such thing in documentation.Actually i want to change the value manually.I have seen progress bar but not seekbar.Can any body tell does titanium has implemented seekbar and if not what could be alternative way .
Thanks in advance
Sounds like you want Ti.UI.Slider.
http://docs.appcelerator.com/titanium/2.1/#!/api/Titanium.UI.Slider
Related
Does anyone have a good resource on creating custom progress bar graphics in Android. I currently have a progress bar that displays data specific to the results of each test that is taken.
I need a bar that will display the results of each specific test, but also in a diffrent color display the results of the best score in the database. (If your current score is higher the diffrence should be green, if lower the diffrence should be red).
I am having a though time finding documentation on the progress bar class in Android, and everything I find doesnt have info about displaying data from two diffrent sources.
This is more what I was looking for but thanks for the help
http://custom-android-dn.blogspot.com/2013/01/how-to-create-custom-progress-bar-and.html
am trying to develop an app in which i have to implement a graph..but the problem is that i dont want a line graph...but rather i want to implement a area chart graph..if i use a line graph,iam not able to colour the graph area.But in my app,i want the graph area to be coloured,and for that i need to implemnt Area Chart.
Its looks like this-
http://www.google.co.in/imgres?q=area+chart+in+excel&um=1&hl=en&sa=N&biw=1366&bih=667&tbm=isch&tbnid=vx30U9kfWKfL9M:&imgrefurl=http://www.brighthub.com/computing/
Can anyone help me on this????anyway thanks in advance
The picture you see is from this link :
a chart engine.
It's a open source.Dig the code , you'll find your solution.
I'd like to be able to have some sort of volume panel looking something like :
|||||||||||||||||||||
Where the lines highlight according to how loud/quiet the sound is according to decibels. Is there a built in Android component to handle this, or does anyone have any ideas as to how I could handle this?
My approach would be to use a Rating Bar and override the android:numStars value to be the number of bars you want. Then, create a drawable that will replace the star images with bars. Really hope this helps.
Best of luck.
I am working in android. i want to show a progress bar.
Progress is based on number of check in persons.
suppose, if number of check in =6 then following should be displayed:-
if number of checkin=10 then this following should be displayed:-
Please tell me how can i manage this RED COLOR BALLOON position according to progress bar position of progress.
you may provide some links for this.
Thank you in advance.
See this progress bar::
http://blog.mediarain.com/2011/04/android-custom-progressbar-with-rounded-corners/
Custom Drawable for ProgressBar/ProgressDialog
I am new to Android/Java/Programming...
I am not sure if I am researching the correct term, but I am looking to have a horizontal bar on my application with no animation. The bar will show a static number from x to y based on a selected button from the user.
Can a ProgressBar be used as a standalone graphic like a bar graph? What is the correct term for me to research?
Edited to add…
Can I remove the user functionality from being able to adjust the seekbar?
The progress bar is used to show progress of some operation and it used the concept of threading.
In your case I think you are talking about seekbar ,.. the value of seekbar can be changed in the application through appropriate controls..e.g onbuttonpress or editing value in textbox
hi what you are looking for is actually a seek bar...
Go through this for a sample
I think you are looking for SeekBar.
A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level or use the arrow keys.
For more details go through these links: link1 & link2
Hope this will solve your issue.