AndroidManifest - 设置活动主题

时间:2017-12-21 00:48:26

标签: android android-layout android-manifest

我现在真的很沮丧并读了很多 - 也许你可以帮助我。 为什么Android Studio仍在向我展示" Main2Activity"标题栏?

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.martin.myapplication">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".Main2Activity"
        android:theme="@android:style/Theme.Light.NoTitleBar"></activity>
</application>

我知道这确实是一个小问题,但我无法弄清楚......

我使用的来源:

https://developer.android.com/guide/topics/ui/look-and-feel/themes.html

Android theme not being set

Apply a theme to an activity in Android?

修改 当前状态: enter image description here

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

正在运行但是为每个Activity禁用ActionBar!

目标:activity_main2不应该有ActionBar。

已解决这只是Android Studio的一个错误。在预览中,它不会禁用AppBar,但只要您在手机上播放应用程序就可以了!

2 个答案:

答案 0 :(得分:0)

隐藏操作栏在“值/样式”

中添加以下代码
<style name="CustomActivityThemeNoTitle" parent="@android:style/Theme.Light">
    <item name="android:windowNoTitle">true</item>
</style>

然后在AndroidManifest.xml文件中,在所需的活动中添加以下代码:

<activity android:name=".Main2Activity"
    android:theme="@style/CustomActivityThemeNoTitle"></activity>

或者,您可以在onCreate方法中为您的活动调用this.requestWindowFeature(Window.FEATURE_NO_TITLE);。例如:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.activity_signup);
    ...
}

答案 1 :(得分:0)

试试这个

<style name="generalnotitle" parent="general">
    <item name="android:windowNoTitle">true</item>
</style>