工作,我有一個activity_login.xml
在Android Studio
一個FrameLayout
,不以全屏模式使用此配置出現:全屏佈局不會在Android
AndroidManifest.xml
:
<activity
android:name=".Activities.LoginActivity"
android:label="@string/title_activity_login"
android:launchMode="singleTop"
android:theme="@style/LoginScreenTheme.TranslucentBar" >
</activity>
Styles.xml:
<style name="LoginScreenTheme.TranslucentBar" parent="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
的Toolbar
仍然出現在Layout
。
Change to Theme.AppCompat.Light.NoActionBar – MichaelStoddart
http://stackoverflow.com/questions/2591036/how-to-hide-the-title-bar-for-an-activity-in-xml-with-existing -custom主題 –