8

我正在开发一个应用程序,我需要翻转ImageView触摸并将控制权转移到第二个活动。

请帮我。

我尝试了很多,但我没有成功。

谢谢大家。

4

3 回答 3

7

这是一个很好的翻转图像库:

https://github.com/castorflex/FlipImageView

于 2013-07-17T18:21:16.607 回答
6

您不需要使用任何库,您可以尝试以下简单的功能来水平或垂直翻转图像视图,

    final static int FLIP_VERTICAL = 1;
    final static int FLIP_HORIZONTAL = 2;
    public static Bitmap flip(Bitmap src, int type) {
            // create new matrix for transformation
            Matrix matrix = new Matrix();
            // if vertical
            if(type == FLIP_VERTICAL) {
                matrix.preScale(1.0f, -1.0f);
            }
            // if horizonal
            else if(type == FLIP_HORIZONTAL) {
                matrix.preScale(-1.0f, 1.0f);
            // unknown type
            } else {
                return null;
            }

            // return transformed image
            return Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true);
        }

您必须传递与要翻转的图像视图关联的位图和翻转类型。例如,

ImageView myImageView = (ImageView) findViewById(R.id.myImageView);
Bitmap bitmap = ((BitmapDrawable)myImageView.getDrawable()).getBitmap(); // get bitmap associated with your imageview
myImageView .setImageBitmap(flip(bitmap ,FLIP_HORIZONTAL));
于 2014-07-24T16:32:32.560 回答
5

您可以使用适用于 Android 3.0 及更高版本的动画 API。

如果你需要它 pre-honeycomb,你可以使用一个名为NineOldAndroids的库。

查看此答案以获取要使用的确切代码。

于 2012-07-18T11:33:45.107 回答