On Mar 9, 5:38 pm, kiros88 <[email protected]> wrote: > rather then the basic "Ringer Volume" display so i couldnt find any > code that was using those words does anyone have an idea what it is > like is it a toast cuz if it is does anyone know how to put a seekbar > and textview on a single toast
You can put any view into a toast. So make a layout in XML with all you want to show, then inflate that layout, then assign it to the toast. Not difficult. However, the one big rule about toasts: no touch, click or typing interaction is possible. It fades in, it lingers, it fades out, and you can't interact at all through it. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

