Ionic2 Native:在 android 中隐藏位置栏

Ionic2 Native : Hide location bar in android

插件

ionic plugin add cordova-plugin-inappbrowser

app.module.ts

const browser = this.iab.create('http://example.com','_blank','location = no,toolbar= no');

编辑了 Android.manifest.xml

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

编辑了 InAppBrowser.java

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN)

毕竟我仍然得到这个位置栏。

请大家帮我解决这个问题。谢谢!!

options字符串不能包含任何空白space.So你必须像下面这样写没有空格。

'location=no,toolbar=no'