I have a button:
public class MyButton extends Button{
private float degrees;
public MyButton(Context context) {
super(context);
}
public MyButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public MyButton(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.save();
canvas.rotate(degrees, this.getWidth()/2, this.getHeight()/2);
super.onDraw(canvas);
canvas.restore();
}
protected void rotateTextInButton(float degrees){
this.degrees = degrees;
}
}
then i create a button MyButton mBtn = new MyButton(this) and when i use mBtn.setSingleLine(true), method rotateTextInButton() works only on 0 and 360 degrees.
If remove mBtn.setSingleLine(true) from code - all works currectly.
It's possible to solve this?
P.S. I MUST use single line at button and able to rotate text inside a button.

