iOS-like storyboard tool for Android project?

sandalone picture sandalone · Sep 10, 2012 · Viewed 15k times · Source

Do we, Android developers, have any tool like iOS developers have which can help us make story board of all activities and links between them?

Those who have seen iOS story board tool will know what I am talking about. It would be really cool as we would be able to visualise the UI logic.

PS. check my storyboard tag

Answer

jush picture jush · Sep 10, 2012

iOS storyboards allow you to define the flow of your app without (almost) writing a single line of code using the Interface Builder.

I don't think there's similar tool for Android. You'll need to create the layouts separately and then glue them calling startActivity (or its relatives).