Is it possible to create a Dialog that has Tabs?
If possible, by selecting one of the Tabs I have to call an Activity, is it possible to pass values through a Bundle?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can use tabHost class of android for that purpose.
http://developer.android.com/reference/android/widget/TabHost.html
in the onItemClick in the list, retrieve the customer name and put it in the intent and call the class that expends tabActivity like this,
at the tab activity remove the data from bundle
now u can pass the customer name along with the intents in the tab and make the activities extract it and use your own logic to use customer name to retrieve customers details.
i dont know if there is any more effecient way to do it. this just happened to come to my mind first.
i hope it helps.