android - Right to Left ProgressBar? -


does know how make view reversed, have horizontal progressbar , want right left instead of left right

make subclass of normal progress bar view , implement ondraw method rotate canvas before drawing it:

@override protected void ondraw(canvas canvas) {     canvas.save();     canvas.rotate(180,<centerx>,<centery>);     super.ondraw(canvas);     canvas.restore(); } 

this should trick.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -