What does parent="android:Theme.Holo" mean in res/values/styles.xml?
<style name="activated_dark_item" parent="android:Theme.Holo">
<item name="android:background">@drawable/mDrawable</item>
</style>
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.
Parent attribute means that your current themes extends this Parent theme. It has all its attributes that you can override in your current style. It is a kind of inheritance for styles.
You can also check here: http://developer.android.com/guide/topics/ui/themes.html#Inheritance