8

私はImageView、タッチを切り替えて制御を2番目のアクティビティに移す必要があるアプリケーションに取り組んでいます。

私を助けてください。

私はたくさん試しましたが、成功しませんでした。

よろしくお願いします。

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

Android3.0以降で利用可能なアニメーションAPIを使用できます。

ハニカム前に必要な場合は、NineOldAndroidsというライブラリを使用できます。

使用する正確なコードについては、この回答を確認してください。

于 2012-07-18T11:33:45.107 に答える