我正在开发一个应用程序,我需要触摸ImageView
触摸并将控件转移到第二个活动。
请帮帮我。
我尝试了很多,但我没有成功。
提前谢谢大家。
答案 0 :(得分:7)
这是一个很好的翻转图像库:
答案 1 :(得分:5)
答案 2 :(得分:4)
您不需要使用任何库,您可以尝试使用简单的功能来水平或垂直翻转imageview,
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相关联的位图传递给翻转和翻转类型。例如,
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));