i am new App Developer with Titanium. i want to create a window base application. whose run on iphone or ipad or android platform. When i run application on iphone than run properly, but when i run on Android than it show a msg (Unexpected Error) and after this it is close.

var win1 = Titanium.UI.createWindow({   
   backgroundColor : '#f0f0f0',      
}); 

var view1 = Titanium.UI.createView({    
height  : 100,  
width   : 100,  
backgroundColor : '#ff0000',
borderColor  : '#000',

}); 

var scrollView1 = Titanium.UI.createScrollView({    
contentHeight   : 150,  
backgroundColor : '#00ff00',

});

var abc = new Array();

abc[0] = 'images/img.png',

abc[1] = 'images/img1.png',

scrollView1.add(abc); 

view1.add(scrollView1); 

win1.add(view1);

win1.open();

how i add Array in my scroll view. in array i store (images path)

please help me,

Thanks in advance,

link|improve this question

1  
It work properly in iphone or ipad, But not in Android... – Suraj Feb 14 at 12:53
Does it show any line number? – Muhammad Zeeshan Feb 14 at 13:01
no, its flesh alert and have msg is <application name> has stopped unexpectedly, Please Try Again – Suraj Feb 14 at 13:13
feedback

4 Answers

up vote 0 down vote accepted

Try This,

var array = new Array();
array[0] = 'image path';
array[1] = 'image path';

for(a = 0; a<array.length;a++){
var lab1            = Titanium.UI.createLabel({
   backgroundImage      : array1[a],
   height           : 75,
   width            : 75,
   backgroundColor          : '#712347',
   borderRadius         : '10',
   zIndex           : 11,
   });

scrLabel.add(lab1);
}

I, Think this is supported, for you.

link|improve this answer
1  
Use an ImageView not a label to display images: Ti.UI.createImageView not Ti.UI.createLabel – Jeff Bonnes Feb 15 at 23:11
ok Sorry, for that, I have some problem in Using UI object. BUt, i have Logics Thanks very Much for ur Reply... – user1206787 Feb 16 at 6:34
feedback

You can't 'add' an array to a window object - 'add' only takes Titanium Proxy objects - things returned from Ti.UI.create.... methods - as the argument. See my commented code below:

var win1 = Titanium.UI.createWindow({   
  backgroundColor : '#f0f0f0',      
}); 

var view1 = Titanium.UI.createView({    
  height  : 100,  
  width   : 100,  
  backgroundColor : '#ff0000',
  borderColor  : '#000',
}); 

var scrollView1 = Titanium.UI.createScrollView({    
  contentHeight   : 150,  
  backgroundColor : '#00ff00',
});

var abc = ['images/img.png', 'images/img1.png'];

// if you want the image paths available as a variable, just set it
scrollView1.abc = abc;
// But I don't understand why you are doing this - you can just access the paths
// from abc directly 

view1.add(scrollView1); 

// You were adding the scroll view twice: win1.add(scrollView1);
// You want to add the view:
win1.add(view1);

win1.open();
link|improve this answer
Hello, I want to show my all picture with thumbnails view whose found in my picture gallery. how i can do, plz, help me. – Suraj Feb 15 at 6:01
(Note: its run properly in iphone simulator but not on Android.) – Suraj Feb 15 at 6:08
The fact that any images are showing in iOS is strange. To display images, you need to create a ImageView and add it to the ScrollView. Have you downloaded the Kitchen Sink and had a look at the code in it? It would help you understand Titanium much better. – Jeff Bonnes Feb 15 at 23:10
Thanks a lots, This is very use for me(Kitchen Sink), Thanks vary much for your response .. – Suraj Feb 16 at 6:47
feedback

Try this code:

var win1 = Titanium.UI.createWindow({   
   backgroundColor : '#f0f0f0'      
}); 

var view1 = Titanium.UI.createView({    
height  : 100,  
width   : 100,  
backgroundColor : '#ff0000',
borderColor  : '#000'

}); 

var scrollView1 = Titanium.UI.createScrollView({    
contentHeight   : 150,  
backgroundColor : '#00ff00'

});

var abc = ['images/img.png','images/img1.png'];

scrollView1.add(abc); 

view1.add(scrollView1); 

win1.add(view1);

win1.open();
link|improve this answer
what is different between both, i think this is same and same msg flashed – Suraj Feb 14 at 13:20
I removed extra comas in the objects and placed ; in arrays. – Muhammad Zeeshan Feb 14 at 13:22
no, my problem as it is. my application is properly run on iphone simulator but problem in android – Suraj Feb 14 at 13:24
Remove the array code and check it is working or not? Remove these lines var abc = new Array(); abc[0] = 'images/img.png'; abc[1] = 'images/img1.png'; scrollView1.add(abc); – Muhammad Zeeshan Feb 14 at 13:27
ya, when i make comment (//scrollView1.add(abc);) than run properly in both simulator (iphone or android) – Suraj Feb 14 at 13:28
show 3 more comments
feedback
var array = new Array();
array[0] = 'image path';
array[1] = 'image path';

for(a = 0; a<array.length;a++){
var lab1            = Titanium.UI.createImageView({
   backgroundImage      : array1[a],
   height           : 75,
   width            : 75,
   backgroundColor          : '#712347',
   borderRadius         : '10',
   zIndex           : 11,
   });

scrLabel.add(lab1);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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