In my manifest I used to have something like this
<activity android:name=".MyActivity"
android:label="@string/app_name"
name="Theme.NoTitleBar"...
and it worked great, I mean the title bar was not shown.
But now I want to customize the theme (I want to extend the default android theme) and I created this theme
<style name="Theme.NoTitleBar.new_skin" parent="android:Theme">
<item name="text_body_read">@style/text_body_read</item>
<item name="text_body_unread">@style/text_body_unread</item>
</style>
then in the manifest I set name="Theme.NoTitleBar.new_skin"
, but the title bar is still shown.
how can I hide the title bar and still have my new custom theme ?
and one more question does adding dots '.' means extending when working with styles ?