我想创建一个模拟时钟,我有一个问题。我使用3 imageview秒,分钟和时针。现在我想让他们每个人围绕中心旋转,但我不能。如何通过给出围绕中心的角度来旋转图像视图?
答案 0 :(得分:5)
假设您的目标是API 11,最简单的方法是:
view.setPivotX(view.getWidth() / 2);
view.setPivotY(view.getHeight() / 2);
float rotation = //some value between 0f and 360f
view.setRotation(rotation);
答案 1 :(得分:0)
答案 2 :(得分:0)
下面是旋转textview的代码。它也适用于API 8。 它只是您需要创建它的对象的自定义文本视图。并且需要设置旋转角度(如果需要也可以翻译。)
公共类VerticalTextView扩展了ImageView { final boolean topDown = true;
float iRotateAngel, iSetX, iSetY;
int iIndex;
Context context;
public int getiIndex()
{
return iIndex;
}
public void setiIndex(int iIndex)
{
this.iIndex = iIndex;
}
public float getiRotateAngel()
{
return iRotateAngel;
}
public void setiRotateAngel(float iRotateAngel)
{
this.iRotateAngel = iRotateAngel;
}
public float getiSetX()
{
return iSetX;
}
public void setiSetX(float iSetX)
{
this.iSetX = iSetX;
}
public float getiSetY()
{
return iSetY;
}
public void setiSetY(float iSetY)
{
this.iSetY = iSetY;
}
public boolean isTopDown()
{
return topDown;
}
public VerticalTextView(Context context)
{
super(context);
this.context = context;
}
public VerticalTextView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
super.onMeasure(heightMeasureSpec, widthMeasureSpec);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}
@Override
protected boolean setFrame(int l, int t, int r, int b)
{
return super.setFrame(l+32, t+12, l + (b - t)+32, t + (r - l)+12);
}
@Override
public void draw(Canvas canvas)
{
if (topDown)
{
canvas.translate(this.iSetX, this.iSetY);
canvas.rotate(this.iRotateAngel);
}
else
{
canvas.translate(this.iSetX, this.iSetY);
canvas.rotate(this.iRotateAngel);
}
canvas.clipRect(0,0,getWidth(), getHeight(), android.graphics.Region.Op.REPLACE);
super.draw(canvas);
}
}