0

首先,我使用的是 Jetpack 导航组件 - 导航抽屉。

而“无操作栏”是我应用的主要风格。

    <style name="NoActionBar" parent="AppTheme">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
        <item name="preferenceTheme">@style/PrefsTheme</item>
    </style>

这是清单。

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:name=".MainApplication"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".ui.MainActivity"
            android:screenOrientation="portrait"
            android:theme="@style/NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

因为我使用 Jetpack 导航组件,所以它是一个单一的活动模式。

通常,我的 UI 有一个自定义工具栏。没关系。

但是在设置 UI 的情况下,我遇到了一个问题......

我正在使用 Jetpack 首选项。https://developer.android.com/guide/topics/ui/settigs

我的设置 UI 扩展了“PreferenceFragmentCompat”,它也在“nav_graph.xml”中定义。

因此可以通过以下代码访问它:

    findNavController().navigate(R.id.settingsFragment)

因为我的应用程序使用“NoActionBar”,所以首选项也没有操作栏。并且首选项是由 Jetpack Preferences 做出的,我无法添加自定义工具栏。

请问有什么好的想法/解决方案吗?

4

2 回答 2

0

可以有多种解决方案。创建另一种样式,使操作栏为真。

<style name="AppTheme.WithActionBar" parent="AppTheme">
    <item name="windowActionBar">true</item>
    <item name="windowNoTitle">false</item>
    <item name="preferenceTheme">@style/PrefsTheme</item>
</style>

然后仅在 Manifest 中将该主题专门应用于您想要的活动中。

<activity
        android:name="YourActivity"
        android:theme="@style/AppTheme.WithActionBar" />
于 2019-10-19T15:26:20.133 回答
0

我正在使用MainActivity没有的喷气背包导航抽屉Actionbar,我也有偏好Actionbar,只是我正在使用AppTheme

<activity
        android:name="YourPreferenceActivity"
        android:theme="@style/AppTheme" />

注意:PreferenceActivity如果您的默认主题是AppTheme

没有操作栏主题的 MainActivity

<activity
            android:name="com.jca.dastuurkajsl.ui.main.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>

这是我的AppTheme 的样子

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

AppTheme.NoActionBar

<style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
于 2019-10-19T16:08:28.667 回答