Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 20 xml layouts which i have to show in order. They are static and does not contain any updates or operations as such. All i want to have is a next button in each layout and just display them one by one when the next button is clicked. My question is can i accomplish that with a single activity? Or will i have to make 20 corrs activities to accompany it??

PS: I can name the layouts anything if it can help to put them in some loop or something. Thanx in advance for any help.

share|improve this question
I think you are looking for view pager mobile.tutsplus.com/tutorials/android/… – Padma Kumar Sep 3 '12 at 12:10

3 Answers

i think u can use ViewFlipper for that.

ViewFlipper flipper = (ViewFlipper) findViewById(R.id.flipper);

//Inflate the Views
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v1 = inflater.inflate(R.layout.t1, null);
View v2 = inflater.inflate(R.layout.t2, null);
View v3 = inflater.inflate(R.layout.t3, null);

//Add the views to the flipper
viewFlipper.addView(v1);
viewFlipper.addView(v2);
viewFlipper.addView(v3);

//Move between them
flipper.showNext();
flipper.showPrevious();
share|improve this answer

no, you don't need new activities. Just call setContentView(R.layout.thenextlayout), but there are better ways to do this and design things depending on your needs.

share|improve this answer

I suggest using fragments together with replace(). If you are not familiar with fragments consider using ViewFlipper.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.