how do you place a view inside of a view in android xml? I have come from a web development background so the closest example I can think of is placing div’s inside of div’s, something like this for example
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 can’t place Views inside Views (i.e.
ImageViewinside anImageView).You can place
ViewsinsideViewGroups(i.e. anImageViewinside aLinearLayout).Please check here for more info: http://developer.android.com/guide/topics/ui/index.html and here: http://developer.android.com/resources/tutorials/views/index.html
Hope this helps!