Please check your activity,if it extends Activity
,it will work when you call Window.RequestFeature(WindowFeatures.NoTitle);
in the OnCreate()
method.
If it extends AppCompatActivity
,it will not work when you set Window.RequestFeature(WindowFeatures.NoTitle);
,but you could call below codes in your OnCreate()
method,and it will work.
if (SupportActionBar != null)
{
SupportActionBar.Hide();
}
Or you could set the theme to android:theme="@style/Theme.AppCompat.Light.NoActionBar"
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…