如何在Android中获取WebView响应?

时间:2018-10-25 17:30:01

标签: android webview

在我的应用程序中,我具有信用卡链接,我使用

调用该URL。
<WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/custom_toolbar"/>

    squareformwebview.setWebViewClient(new myWebViewClient());
    squareformwebview.getSettings().setJavaScriptEnabled(true);
    squareformwebview.setBackgroundColor(getResources().getColor(R.color.colorPrimaryDark));
    squareformwebview.loadUrl(API.webformCards);

运行代码时,我将获得包含4个字段的信用卡信息和按钮的网页。当我按下按钮时,我会在JavaScript中得到响应。现在如何处理响应?如何获得令牌生成的响应?

0 个答案:

没有答案