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 to create two layers and switch between them by clicking buttons. for example it should be approximately like this

can anyone tel me where and how to start. i dont have any idea about this.. i want an idea about this

thanks..

share|improve this question

2 Answers

up vote 1 down vote accepted

Use TabView click on the link to see the tutorial.

share|improve this answer
thanks for the reply. do you know where can i find some sample applications to get some idea – Android user Feb 22 '12 at 9:57
send me ur emailid i will mail you the sample code – Rakshi Feb 22 '12 at 10:04
thanks a lot my mail id is androidfreak111@gmail.com – Android user Feb 23 '12 at 4:56

You can create two different layout with different id. Then to select the second layout set first layout visibility gone and to select first layout make second layout gone and first layout visible.

youViewLayout.setVisibility(View.GONE);
share|improve this answer
thanks.. now is it possible to write text dynamically in one layer when it is active? if it is can you give me the idea? – Android user Feb 23 '12 at 9:09
I'm not sure, may be you can try with UI Thread. – ashish Feb 27 '12 at 13:36

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.