来自插件的startActivity,无法在Android使用的flutter中删除操作栏或标题栏

时间:2019-07-03 09:14:48

标签: android flutter android-actionbar

我使用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>

0 个答案:

没有答案