我正在使用https://github.com/vashisthg/StartPointSeekBar中的 StartPointSeekBar ,而且效果很好。
但现在我需要它垂直。我尝试过几个例子:
protected void onDraw(Canvas c) {
c.rotate(-90);
c.translate(-getHeight(),0);
super.onDraw(c);
}
和XML:
android:rotation="270"
但没有任何作用。
这是我在portrait
模式下使用的水平 StartPointSeekBar
请帮忙吗?