Reputation: 655
I am a beginner to titanium I am supposed to do a titanium project that have a log in page and then I have to show a listview Now I am very confused about somethings 1-when creating a project, I supposed to choose between "Mobile App Project" and "Mobile Module Project" .. but I don't know what are the differences between them ?
2-In java script code, how can I move between application's windows. I mean in native android we write
startActivity(new intent(this , ActivityName.class));
so what is the equivalent in titanium ?
I'll appreciate any help. Thanks in advance
Upvotes: 0
Views: 34
Reputation: 1482
Here are answers to your questions
1)you have to create mobile project not module project for now
2)Here are many listView examples
http://docs.appcelerator.com/titanium/3.0/#!/api/Titanium.UI.ListView
3)This is how you open a new window in titanium
var window = Titanium.UI.createWindow();
window.open()
Thanks
Upvotes: 1