Android pattern for activity "flows"
        Posted  
        
            by 
                Otto
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Otto
        
        
        
        Published on 2010-12-28T21:39:23Z
        Indexed on 
            2010/12/28
            21:54 UTC
        
        
        Read the original article
        Hit count: 287
        
I'm developing an android app that has a bunch of screens (activities) that are supposed to have "continue" and "back" buttons at the top. Can you tell me the right pattern for implementing this? I've seen some iPhone apps that have this but Android apps usually don't (I think partly because the back button is part of the phone).
I found a post online about an Activity class that has "sub activities" which kind of seems like what I want to do, but I'm wondering if there's a simpler solution or pattern for creating flows like this (in which several activities are linked with continue/back buttons).
© Stack Overflow or respective owner