You can use fragments. You can make each your step a fragment and when user answers your questions you can jump to next step.(fragment)
You can check fragments from here:
http://developer.android.com/guide/components/fragments.html
If your steps are independent from each other you can put your fragments in a viewpager and make your steps slidable.
Here is a popular view pager library with indicator. (You can use indicators to notice current step)
https://github.com/JakeWharton/Android-ViewPagerIndicator
Good luck.