Right to Left ProgressBar?

前端 未结 8 1887
陌清茗
陌清茗 2020-12-05 23:50

Does anyone know how to make a View reversed, I have a horizontal ProgressBar and I want it to right to left instead of left to right

8条回答
  •  执念已碎
    2020-12-06 00:18

    It's even easier. You can simply call the following method and then it's rotated and works just how you wanted.

    progressBar.setRotation(180);
    

    An example: a normal progressbar and a RTL progressbar

提交回复
热议问题