我使用XXXPlugin(这是我的自定义插件)中的startActivity,然后修改了styles.xml
:
<style name="LaunchTheme" parent="Theme.AppCompat.Light.NoActionBar">
但是操作栏始终显示。如何隐藏或删除操作栏?
===================
我解决了这个问题,我将android:theme="@style/Theme.AppCompat.NoActionBar"
添加到插件项目而非应用程序项目中。例如我的插件项目的名称为qrscan
,然后将主题添加到AndroidManifest.xml
中,如下所示:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.david.qrscan">
<application
android:theme="@style/Theme.AppCompat.NoActionBar">
<activity android:name=".QrScanActivity" />
</application>
</manifest>