FAQ - nhaarman/Triad GitHub Wiki
- Can I use multiple Activities with Triad?
Currently, Triad is single-Activity only. Most apps can be built using a single Activity with multiple Screens. In a future version Triad will support multiple Activities.
- Do Presenters survive orientation changes?
Yes, they do. Screens live in the Application context, and Presenters live in Screens, making them survive orientation changes. Whenever the device is rotated, the Presenter receives an onControlLost()
for the 'old' Container instance, and gets control over the new (rotated) Container instance.