以下是我设置旋转外观的方法。
我正在侦听操作并移动旋转图标,尝试计算旋转角度并将该旋转角度应用于封装编辑文本的整个布局。应用的旋转必须大约是封装相对布局的中心。
以下是我在touchListener for rotation图标中尝试实现此目的的方法。
if(v == ivRotateSticker){
//TODO grab xc and yc using (top and bottom)/2 and (left and right)/2 to grab center of sticker after each rotation
final float x = event.getX();
final float y = event.getY();
rlTextStickerLayout.getGlobalVisibleRect(myViewRect);
xc = myViewRect.width()/2;
yc = myViewRect.height()/2;
dx = scaleReceiver.getWidth() - myViewRect.width();
dy = scaleReceiver.getHeight() - myViewRect.height();
leftBound = scaleReceiver.getX();
topBound = scaleReceiver.getY();
switch (event.getAction()){
case MotionEvent.ACTION_DOWN:
mViewAngle = rlTextStickerLayout.getRotation();
mPrevAngle = Math.toDegrees(Math.atan2(x - xc, yc - y));
break;
case MotionEvent.ACTION_MOVE:
Log.d("EventRegistered", " " + event.getRawX() + "--" + dx + " -- " + dy);
mCurrAngle = Math.toDegrees(Math.atan2(x - xc, yc - y));
if (x >= leftBound && y >= topBound && x <= dx && y <= dy) {
float rot = (float) (mViewAngle + mCurrAngle - mPrevAngle);
rlTextStickerLayout.setRotation((float) (mViewAngle + mCurrAngle - mPrevAngle));
Log.d("stickerRotation"," "+rot);
}
break;
}
return true;
}
但是由此产生的旋转是微不足道的,并不是理想的平滑。此外,如果我将贴纸移动到其他位置,如何更新新的旋转中心,因为移动贴纸后的旋转会显着改变旋转中心。如何实现更顺畅的旋转?
答案 0 :(得分:0)
在1000毫秒内将视图旋转设置为指定值(90,180,270):
view.animate()的旋转(90°F).setDuration(1000)。开始(); 。view.animate()的旋转(180°F).setDuration(1000)。开始(); 。view.animate()的旋转(270°F).setDuration(1000)。开始();
使用此库可以旋转整个视图层次结构https://github.com/rongi/rotate-layout