Titanium で imageView を作成しましたが、ビューの backgroundColor を変更するとともに、フェードアウト アニメーションを使用して非表示にしたいと考えています。
次のコードがあります
var image = Titanium.UI.createImageView({
backgroundImage:'test.png',
width:10,
height:10,
top:100,
left:205
});
image.animate({
curve:Ti.UI.ANIMATION_CURVE_EASE_IN_OUT,
opacity:10,
duration:200
});