Android Manifest app:主题

时间:2016-02-11 17:11:01

标签: android android-manifest android-theme

我刚刚用Navigation Drawer启动了新的android项目。进入清单我发现有两个android:theme。一个内部应用程序标记和一个内部活动。我的问题是我怎么能在一个应用程序中拥有多个主题,而我的应用程序正在使用一个主题。

的AndroidManifest.xml

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

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

3 个答案:

答案 0 :(得分:1)

android:theme元素中的<application>设置所有活动的默认主题。单个活动可以通过在android:theme元素中拥有自己的<activity>属性来覆盖此默认值。

  

为什么我可以在一个应用程序中拥有多个主题

并非所有活动都具有相同的主题。例如,有些人可能会使用操作栏,而有些人可能不会。或者,大多数可能是全屏幕活动,但其他人可能更像是对话框,而不是全屏幕。

答案 1 :(得分:1)

应用程序的主题对整个应用程序都是通用的,这很明显。但是android为您提供了为您的活动单独设置主题的功能。例如,在您的应用中,您的MainActivity没有ActionBar。但是您可以在应用中创建新活动,其中可能包含带Light或Dark主题的ActionBar,或您选择的任何自定义主题。

我希望这能回答你的问题。

答案 2 :(得分:0)

您可以使用<activity>元素中的android:theme属性自定义主题活动。如果不提供任何主题,它将使用应用程序明智的主题进行该活动。

希望它能更清楚。