我正在尝试更改首选项片段的标题图标,但没有任何运气。我尝试在 Manifest 上设置它但没有用,另外,我通过调用 Window. 但它也行不通。有人有解决方案吗?
<activity
android:name=".Test"
android:exported="true"
android:icon="@drawable/ic_settings_test"
android:label="Test"
android:hardwareAccelerated="true"
android:excludeFromRecents="false"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
即使显示的首选项屏幕运行良好,标题上显示的图标仍然是股票设置图标:S