What is a Window in Android?
I thought the top-most level in Android is called Activity, which is the screen you see.
Can someone tell me what a Window in Android is? do we just have one or multiple of them.
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.
The Activity is what you would call a Window.
Technically speaking, the Activity creates the Window for you.
You can have many of them, but normally not synchronously. To ask for additional information you can call a Dialog, or fire an Intent to another Activity.
For more information visit this link.