[android-developers] Re: how to implement progress bar as same as windows loader bar

2010-03-13 Thread Paul Turchenko
Well, the buttom is just the same as a View except is has different look (it defines in via the constructor). As you can see, onClick event is defined on the View class, and all that button does is defining the way it should look when View is focused/selected/pressed/ etc. Hope this helps On Mar 1

[android-developers] Re: how to implement progress bar as same as windows loader bar

2010-03-12 Thread Farproc
Write your own subclass of View. Override it's onDraw() method. You need a Timer or Handler to call invalidate() periodically. On Mar 12, 4:01 pm, mike wrote: > hai, > > i struck in implementing progress bar functionality of my splash > screen. > > i know horizontal progress bar implementation