I am currently developing a titanium app for android and iOs including an imageView which should be scrollable and scalable (via a slider). I already get this to work on iOs but
Thanks for your input Arturo, but this was not the problem. I finally figured out how to use a module in an alloy project by reading the guide. My final code looks like this:
<Module module="org.iotashan.TiTouchImageView" id="androidPicture"></Module>
i have been using this in my project like.
<View id="windowView" module="org.iotashan.TiTouchImageView" platform="android" minZoom="0.1" maxZoom="9.5"></View>
"#windowView":{
top: 44,
height: Ti.UI.FILL,
width: Ti.UI.FILL,
backgroundColor: "trasparent"
}
$.windowView.image = "image path here"
And its working like a charm.
Did you add the module reference to tiapp.xml? Any module should work on Alloy, you only need to take care of the SDK version.