Ios-like Storyboard Tool For Android Project?
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 t
Solution 1:
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).
Post a Comment for "Ios-like Storyboard Tool For Android Project?"