首先,我使用的是 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 做出的,我无法添加自定义工具栏。
请问有什么好的想法/解决方案吗?