Java 每次刷卡刷新后,如何停止WebView应用程序转到主页?

Java 每次刷卡刷新后,如何停止WebView应用程序转到主页?,java,android,android-webview,pull-to-refresh,swiperefreshlayout,Java,Android,Android Webview,Pull To Refresh,Swiperefreshlayout,每次我刷卡刷新时,我的应用程序都会重新加载到主页,而不是重新加载相同的网页。我想尽一切办法去发现这种行为,但什么也没发现。你能告诉我这里有什么问题吗 “滑动刷新”应该只刷新当前网页,而不是整个应用,对吗 MainActivity.java package com.yoalfaaz.yoalfaaz; import android.content.Intent; import android.os.Bundle; import android.su

每次我刷卡刷新时,我的应用程序都会重新加载到主页,而不是重新加载相同的网页。我想尽一切办法去发现这种行为,但什么也没发现。你能告诉我这里有什么问题吗

“滑动刷新”应该只刷新当前网页,而不是整个应用,对吗

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);

        swipe = (SwipeRefreshLayout) findViewById(R.id.swiperefresh);
        swipe.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
            @Override
            public void onRefresh() {
                LoadWeb();
            }
        });
        LoadWeb();
    }

    public void LoadWeb() {
        YoWeb = (WebView)findViewById(R.id.webview);
        WebSettings webSettings = YoWeb.getSettings();
        webSettings.setJavaScriptEnabled(true);
        YoWeb.loadUrl("https://www.yoalfaaz.com");
        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;
    //}
}
content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.yoalfaaz.yoalfaaz.MainActivity"
    tools:showIn="@layout/activity_main">

    <android.support.v4.widget.SwipeRefreshLayout

        android:id="@+id/swiperefresh"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <WebView
            android:id="@+id/webview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            />

    </android.support.v4.widget.SwipeRefreshLayout>
</android.support.constraint.ConstraintLayout>


这两个文件负责刷卡刷新,您可以看到其中的所有代码。我希望您能够准确地找出问题所在。

您的SwipeRefreshLayout.OnRefreshListener正在调用LoadWeb方法。在LoadWeb内部,您正在调用YoWeb.loadUrl(“”);这意味着您总是将webview设置为在刷新时转到该URL。将代码更改为如下所示:

@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);
        }
    });
}

是因为撞车吗?去baseAvitivity@AnkitAman该应用程序工作正常,但可能在刷卡后进入baseActivity。你能告诉我如何解决这个问题吗?你能在刷卡后放一些日志吗?非常感谢,你的代码工作得很好。你能准确地告诉我你做了哪些改变,以便我能更好地理解吗?我做的每一个改变旁边都有评论。