in my manifest I use this:
<activity
android:name=".Overlay"
parent="@android:style/Theme.Dialog"
android:label="@string/label"
android:theme="@style/Theme.Overlay" >
..
</activity>
Everytime I change the xml I get the this error "Attribute is missing the Android namespace prefix" After a project->clean it works until i change the xml again. android:parent does not exist, so what is the problem here and how to fix it?
thanks tata