Possible Duplicate:
Drawing mirrored bitmaps in android
I'm working on an iOS- and Android-app with Titanium Mobile and have the following problem: I want to mirror an ImageView and created the following code for that:
var transformation = Ti.UI.create2DMatrix();
transformation = transformation.scale(-1, 1);
imageView.transform = transformation;
This works fine on iOS, but on Android the image will not be shown. What else can I do to mirror an image with Titanium on Android? Or am I doing something wrong with my actual code?
Thanks a lot for any answer! Thomas