Is there other way to create an Activity inside an Activity without using Dialog?
Is there other way to create an Activity inside an Activity without using Dialog
Share
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 don’t create “Activity inside an Activity”. You can start Activity from another Activity and if you assign
<activity android:theme="@android:style/Theme.Dialog">to the Activity layout then it will appear as a dialog but Activities are independent entities each with it’s own lifecycle. Perhaps if you provide code snippets and better description you will get a better answer?