• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Tutorial Application Newbie

I am a newbie just started learning android app development.

I need to do a tutorial application which will display text and images.

How should I go about this.

Does each block of text requires separate activity or content can be loaded on the same activity when next button is pressed.
 
Im not sure but i think you could just change the contect view of the application when a button was pressed..

I would do something like this in the action listeners for the buttons.
Code:
   setContentView(R.layout.LayoutName);
 
Back
Top Bottom