1

我的图像更大,但只有一部分必须显示在屏幕上。我已经做到了。我的问题是,图像必须用手指旋转。下面的代码可以在小图像上正常工作。但是在我的图像上它有一个错误的行为,上下重新定位图像并奇怪地旋转它。如何使我的图像正常旋转?,作为一个小图像。然后我必须能够触摸到颜色。我在这里得到了答案,但我仍然需要努力。但首先,请告诉我如何解决旋转问题,如果你对第二个问题有想法,我想听听他们的意见。

这是图像:

这是图像

这是它应该如何出现在屏幕上:

这就是它应该出现在屏幕上的方式

XML 布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ImageView android:id="@+id/imag"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:src="@drawable/roata"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="-200dp"
    android:scaleType="center"/>
 </RelativeLayout>

Java代码

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    picture = (ImageView)findViewById(R.id.imag);
    picture.setOnTouchListener(onTableTouched);
}

public android.view.View.OnTouchListener onTableTouched = new android.view.View.OnTouchListener()
{
    public boolean onTouch(View v, MotionEvent evt)
    {
        double r = Math.atan2(evt.getX() - picture.getWidth() / 2, picture.getHeight() / 2 - evt.getY());
        int rotation = (int) Math.toDegrees(r);


        if (evt.getAction() == MotionEvent.ACTION_DOWN)
        {
            //
        }

        if (evt.getAction() == MotionEvent.ACTION_MOVE)
        {
           updateRotation(rotation);
        }

        if (evt.getAction() == MotionEvent.ACTION_UP)
        {
            //
        }

        return true;
    }
};

private void updateRotation(double rot)
{
    float newRot = new Float(rot);

    Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.roata);

    Matrix matrix = new Matrix();
    matrix.postRotate(newRot - 50);

    Bitmap redrawnBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
    picture.setImageBitmap(redrawnBitmap);
}

更新: 因为我无处可去BitmapMatrix我试图调整RotateAnimtaion()以得到尽可能相似的东西。我认为修改第二个参数和动画动态的持续时间,我们可以在不改变 Y 位置的情况下得到类似的结果。现在,问题是图像是裁剪的,我认为是因为scaleType="center". 我将发布代码和屏幕截图。这可以改进吗?

Animation a = new RotateAnimation(0.0f, param,
            Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
            0.5f);
    a.setFillEnabled(true);
    a.setFillAfter(true);
    a.setDuration(param);

  picture.startAnimation(a);

在此处输入图像描述

4

2 回答 2

1

我认为问题是,您试图在每个 updateRotation() 调用中重绘相同的位图。

去掉这条线怎么样

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.roata);

fromupdateRotation(double rot)并让它全局声明,这样您就不需要一次又一次地创建相同的位图,这就是您获得 OutOfMemory 的原因。

尝试这个,

Bitmap bitmap=null;
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    picture = (ImageView)findViewById(R.id.imag);
    bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.roata);
    picture.setOnTouchListener(onTableTouched);
}


public android.view.View.OnTouchListener onTableTouched = new android.view.View.OnTouchListener() {
    public boolean onTouch(View v, MotionEvent evt) {
        double r = Math.atan2(evt.getX() - picture.getWidth() / 2, picture.getHeight() / 2 - evt.getY());
        int rotation = (int) Math.toDegrees(r);

        if (evt.getAction() == MotionEvent.ACTION_DOWN) {
            //
        }

        if (evt.getAction() == MotionEvent.ACTION_MOVE) {
           updateRotation(rotation);
        }

        if (evt.getAction() == MotionEvent.ACTION_UP) {
            //
        }

        return true;
    }
};

private void updateRotation(double rot) {
    float newRot = new Float(rot);

    Matrix matrix = new Matrix();
    matrix.postRotate(newRot - 50);

    Bitmap redrawnBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
    picture.setImageBitmap(redrawnBitmap);
}
于 2012-07-02T09:25:20.640 回答
1

只需将 Bitmap 声明为全局:

private WeakReference<Bitmap> bitmap;

并使用

bitmap =new WeakReference(BitmapFactory.decodeResource(getResources(), R.drawable.roata));

代替

bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.roata);
于 2012-07-02T09:28:05.953 回答