深层链接会打开应用,但不会打开确切的网址

时间:2017-10-21 10:22:32

标签: java android android-webview deep-linking

我已经制作了一个WebView应用程序,并且深层链接就可以了。每当有人点击我的网站链接(在任何其他应用程序上),然后我的应用程序打开,但主页加载而不是点击的URL。我想要在点击链接而不是主页时打开我网站的确切网址。

MainActivity.java

package com.yoalfaaz.yoalfaaz;

        import android.content.Intent;
        import android.os.Bundle;
        import android.support.design.widget.FloatingActionButton;
        import android.support.design.widget.Snackbar;
        import android.support.v4.widget.SwipeRefreshLayout;
        import android.support.v7.app.AppCompatActivity;
        import android.support.v7.widget.ShareActionProvider;
        import android.support.v7.widget.Toolbar;
        import android.view.View;
        import android.view.Menu;
        import android.view.MenuItem;
        import android.webkit.WebSettings;
        import android.webkit.WebView;
        import android.webkit.WebViewClient;
        import android.support.v4.view.MenuItemCompat;

public class MainActivity extends AppCompatActivity {
    private WebView YoWeb;
    private ShareActionProvider mShareActionProvider;

    SwipeRefreshLayout swipe;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        YoWeb = (WebView)findViewById(R.id.webview); // Move your declaration up here
        swipe = (SwipeRefreshLayout) findViewById(R.id.swiperefresh);
        swipe.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
            @Override
            public void onRefresh() {
                LoadWeb(YoWeb.getUrl());  // Pass in the current url to refresh
            }
        });

        LoadWeb("https://www.yoalfaaz.com");  // load the home page only once
    }

    public void LoadWeb(String url) // Pass in URL you want to load
    {

        WebSettings webSettings = YoWeb.getSettings();
        webSettings.setJavaScriptEnabled(true);
        YoWeb.loadUrl(url);  // Load the URL passed into the method
        swipe.setRefreshing(true);
        YoWeb.setWebViewClient(new WebViewClient() {

            //onPageFinished Method
            public void onPageFinished(WebView view, String url) {
                //Hide the SwipeRefreshLayout
                swipe.setRefreshing(false);
            }
        });
    }

    @Override
    public void onBackPressed() {
        if (YoWeb.canGoBack()) {
            YoWeb.goBack();
        } else {
            super.onBackPressed();
        }
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        switch (item.getItemId()) {
            case R.id.action_settings:
                return true;

            default:
                return super.onOptionsItemSelected(item);
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate menu resource file.
        getMenuInflater().inflate(R.menu.menu_main, menu);

        // Locate MenuItem with ShareActionProvider
        MenuItem item = menu.findItem(R.id.menu_item_share);

        // Fetch and store ShareActionProvider
        mShareActionProvider = (ShareActionProvider) MenuItemCompat.getActionProvider(item);

        // Return true to display menu
        return true;
    }

    // Call to update the share intent
    private void setShareIntent(Intent shareIntent) {
        if (mShareActionProvider != null) {
            mShareActionProvider.setShareIntent(shareIntent);
        }
    }

    //private Intent setShareIntent() {
    //    Intent shareIntent = new Intent();
    //    shareIntent.setAction(Intent.ACTION_SEND);
    //    shareIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
    //    shareIntent.setType("text/plain");
    //    startActivity(shareIntent);
    //    return shareIntent;
    //}
}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.yoalfaaz.yoalfaaz">

    <uses-permission android:name="android.permission.INTERNET" />

    <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">
        <activity
            android:name=".MainActivity"
            android:configChanges="orientation|keyboardHidden"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter >
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <data android:host="www.yoalfaaz.com" android:scheme="https"/>
            </intent-filter>
        </activity>
        <activity android:name=".SplashScreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

如何使其与大多数其他应用程序一起使用?就像我们点击WhatsApp中的YouTube链接一样,该特定视频会在YouTube应用中打开,而不是在YouTube首页上显示。

1 个答案:

答案 0 :(得分:0)

LoadWeb("https://www.yoalfaaz.com");  // load the home page only once

使用getIntent().getData().toString()来获取从其他应用点击的网址(作为string)并使用此网址加载网络视图,而不是对网址进行硬编码。

如果没有从null收到网址,请进行getData()检查并加载默认网址。

希望这有帮助。

=========编辑以显示您所要求的代码=====================

在您的代码中,您正在使用此行加载Web视图。

LoadWeb("https://www.yoalfaaz.com");  // load the home page only once

修改此行,如下所示。

String url = "https://www.yoalfaaz.com";
if(null != getIntent().getData()){
url = getIntent().getData().toString();
}
LoadWeb(url);