是否可以在Chrome自定义标签上隐藏网址栏

时间:2019-02-12 10:44:46

标签: android chrome-custom-tabs

我正在寻找一种方法,因为标题显示为隐藏网址栏。

到目前为止,我已经知道了,但是它什么都没有改变。

CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
        builder.setShowTitle(false);
        builder.enableUrlBarHiding();
        CustomTabsIntent customTabsIntent = builder.build();
        customTabsIntent.launchUrl(this, Uri.parse(url));

我尝试使用Webview,但是在文件上传和某些工作不正常的CSS方面,我遇到了无尽的问题。 “自定义”标签在所有这些方面均能很好地工作,并且看起来更快。

按照@ 113408回答,我正在尝试实现TWA,我已经使其正常运行,在网站和应用程序之间以及应用程序与网站之间添加了链接,但是URL栏仍然可行。

这是清单文件,因为它是我唯一完成的编码。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.app.comppanynme.twatest">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >

        <meta-data
            android:name="asset_statements"
            android:resource="@string/asset_statements" />

        <activity
            android:name="android.support.customtabs.trusted.LauncherActivity">

            <!-- Edit android:value to change the url opened by the TWA -->
            <meta-data
                android:name="android.support.customtabs.trusted.DEFAULT_URL"
                android:value="http://192.168.8.46" />

            <!-- This intent-filter adds the TWA to the Android Launcher -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <!--
              This intent-filter allows the TWA to handle Intents to open
              airhorner.com.
            -->
            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE"/>

                <!-- Edit android:host to handle links to the target URL-->
                <data
                    android:scheme="http"
                    android:host="192.168.8.46"/>
            </intent-filter>
        </activity>
    </application>
</manifest>

这是我的资产报表

<string name="asset_statements">
        [{
            \"relation\": [\"delegate_permission/common.handle_all_urls\"],
            \"target\": {
                \"namespace\": \"web\",
                \"site\": \"http://192.168.8.46"}
        }]
    </string>

1 个答案:

答案 0 :(得分:2)

您可以使用Trusted Web Activities

获得所需的结果
  

受信任的网络活动是一种新方法,可以使用基于“自定义标签”的协议将Web应用程序内容(例如PWA)与Android应用程序集成。

最终,TWA将允许您执行与CustomChromeTabs完全相同的操作,但提供更多功能。

您要寻找的是Remove the URL bar

  

受信任的网络活动要求在Android应用程序和要建立的网站之间建立关联以删除URL栏。

注意:隐藏网址栏时,请确保您通过HTTPS为页面提供服务,否则,由于认为该页面不安全,您将无法隐藏。

How to get HTTPS working on your local development environment in 5 minutes