I have an Activity
inherited from AppCompactActivity
. in manifest for activity set theme:
<style name="Theme.custom" parent="Theme.AppCompat.Light.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="colorButtonNormal">@color/accent</item>
<item name="android:buttonStyle">@style/ButtonStyle</item>
</style>
When I run activity, it shows as a dialog, but title is shown! i try supportRequestWindowFeature(Window.FEATURE_NO_TITLE)
and RequestWindowFeature(Window.FEATURE_NO_TITLE)
but title still displayed. Please let me know, What is wrong?
Edit
I solve it, only change android:windowNoTitle
to windowNoTitle
! because i am use AppCompactActvity!
please use the request window feature before
setContentView()
as belowShould keep nothing over Activity title. if following these steps activity title will be hidden.
style.xml:
manifiest.xml:
YourClass.java:
after
setContentView(R.layout.xyz)
like thisIf you are having
AppCompatActivity
then the following won't workrequestWindowFeature(Window.FEATURE_NO_TITLE);
The simple way is to set it in the
style.xml
file.If you want to remove it programmatically then add the following in
onCreate()
Should keep nothing over
<string name="app_name"></string>
.so when you run your activity it will show dialog with "NO Title".string.xml:
Set below style in your style.xml
than set this theme in your activity