gpt4 book ai didi

Android list 应用程序 :theme

转载 作者:太空狗 更新时间:2023-10-29 13:15:19 25 4
gpt4 key购买 nike

我刚刚开始了带有 Navigation Drawer 的新 android 项目。查看 list 我发现有两个 android:theme。一个内部应用程序标签和一个内部 Activity 。我的问题是为什么我可以在一个应用程序中有多个主题,而我的应用程序正在使用其中一个主题。

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>

样式.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" />

最佳答案

android:theme<application>元素为您的所有 Activity 设置默认主题。个别 Activity 可以通过拥有自己的 android:theme 来覆盖此默认值他们的属性 <activity>元素。

how come i can have multiple themes inside one application

并非所有 Activity 都有相同的主题。例如,一些人可能会使用操作栏,而另一些人则不会。或者,大多数 Activity 可能是全屏 Activity ,但其他 Activity 的主题可能更像是对话,而不是全屏显示。

关于Android list 应用程序 :theme,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35345748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com