Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Greetings,

I'm trying to simply display an image using Appcelerator on Android.

I don't understand why it won't work.

Here is my code:

var back=Titanium.UI.createImageView({
 url:'images/back.png'
});

win.add(back);

I've also tried putting the image inside a view:

var view = Titanium.UI.createView({
   borderRadius:10,
   backgroundColor:'red',
   left:10,
     right:10
});
var back=Titanium.UI.createImageView({
 url:'images/back.png'
});
view.add(back);
win.add(view);

I'm totally stuck and am hoping someone can point me in the right direction here.

Many thanks in advance,

share|improve this question
did you try reaching out to in their forums? – Lucas B Nov 9 '10 at 18:36
5  
Yes, but I find there's much better traffic on stackoverflow. – Eamorr Nov 9 '10 at 18:38
2  
Better interface, too. Appcelerator's forums are pretty useless. – ceejayoz Nov 9 '10 at 18:59

2 Answers

up vote 3 down vote accepted

I got it working as follows:

var back_fn=Ti.Filesystem.getFile(Titanium.Filesystem.resourcesDirectory,'images/back.png');
var back=Titanium.UI.createImageView({
    image:back_fn,
    top:10,
    right:10
});
win.add(back);

Thanks for all the responses guys,

share|improve this answer
you shouldn't have to do it with the file system, but I am glad it works – Aaron Saunders Nov 10 '10 at 12:50

try this

var back=Titanium.UI.createImageView({
  url:'images/back.png',
  height : 130,
  width : 130
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.