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?

link|improve this question

80% accept rate
you'd have to record the sound from the mic, and get the level somehow – njzk2 Jan 6 at 15:49
@njzk2 Do you have any idea how I could go about getting the decibel values from a recorded sound? – Neeta Jan 6 at 21:01
feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
Thanks, I'll try this and get back to you. – Neeta Jan 6 at 13:10
Awesome. Looking forward to hearing your results! – OrhanC1 Jan 6 at 13:35
1  
This worked, I created images of the empty and filled bars in Photoshop and used them to create a custom RatingBar. – Neeta Jan 6 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.