3

我这里有这条线

我怎样才能删除这条线?

我使用这个项目https://github.com/GoogleChromeLabs/svgomg-twa

4

1 回答 1

1

那就是导航栏被分割了,你可以控制它的颜色。

使用气泡膜

使用BubblewrapnavigationDividerColor (推荐)时,您可以通过更新和navigationDividerColorDarin来更改颜色twa-manifest.json

在 AndroidManifest.xml 中

在自己构建应用程序并使用默认 LauncherActivity 时,您可以在以下位置设置正确的元标记作为 Activity 定义的一部分AndroidManifest.xml

<meta-data
    android:name="androix.browser.trusted.NAVIGATION_BAR_DIVIDER_COLOR" 
    android:resource="@color/navigationDividerColor" />

<meta-data 
    android:name="androix.browser.trusted.NAVIGATION_BAR_DIVIDER_COLOR_DARK"
    android:resource="@color/navigationDividerColorDark" />

PS:https ://github.com/GoogleChromeLabs/svgomg-twa演示已被弃用。

于 2021-02-23T08:53:43.207 回答