WebView क्लिक व्यवहार ऑप्टिमाइज़ करें

अगर आपका Android ऐप्लिकेशन, वेब कॉन्टेंट दिखाने के लिएWebView की ज़रूरत पड़ सकती है क्लिक व्यवहार को ऑप्टिमाइज़ करने के बारे में सोचें:

  • WebView नहीं है टैब वाली ब्राउज़िंग की सुविधा होती है. किसी लिंक पर क्लिक करने से कॉन्टेंट, डिफ़ॉल्ट वेब ब्राउज़र में खुलता है. अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
  • WebView पर कस्टम यूआरएल स्कीम काम नहीं करती जिसे विज्ञापनों में तब दिखाया जा सकता है, जब क्लिक डेस्टिनेशन किसी दूसरे ऐप्लिकेशन पर होता है. उदाहरण के लिए, Google Play के क्लिक-थ्रू यूआरएल में market:// का इस्तेमाल किया जा सकता है.

इस गाइड में, मोबाइल पर क्लिक के व्यवहार को ऑप्टिमाइज़ करने के लिए सुझाए गए तरीके बताए गए हैं वेब व्यू कॉन्टेंट को सुरक्षित रखते हुए वेब व्यू.

ज़रूरी शर्तें

लागू करना

अपने WebView इंस्टेंस:

  1. shouldOverrideUrlLoading() बदलें WebViewClient पर. यह तरीका तब कॉल किया जाता है, जब मौजूदा यूआरएल में कोई यूआरएल लोड होता है WebView.

  2. तय करें कि क्लिक यूआरएल के व्यवहार को बदलना है या नहीं.

    नीचे दिया गया कोड स्निपेट जांचता है कि क्या वर्तमान डोमेन टारगेट डोमेन. यह सिर्फ़ एक तरीका है, क्योंकि आपके लिए अलग-अलग शर्तें तय की जा सकती हैं.

  3. तय करें कि यूआरएल को किसी बाहरी ब्राउज़र में खोलना है या नहीं, Android कस्टम टैब या मौजूदा वेब व्यू में. इस गाइड में, पेज से अलग यूआरएल खोलने का तरीका बताया गया है Android कस्टम टैब लॉन्च करके साइट पर जा सकते हैं.

कोड का उदाहरण

सबसे पहले, अपने मॉड्यूल-लेवल build.gradle पर androidx.browser डिपेंडेंसी जोड़ें फ़ाइल से मिलता है, आम तौर पर app/build.gradle. कस्टम टैब के लिए यह ज़रूरी है:

dependencies {
  implementation 'androidx.browser:browser:1.5.0'
}

नीचे दिया गया कोड स्निपेट, shouldOverrideUrlLoading() को लागू करने का तरीका बताता है:

Java

public class MainActivity extends AppCompatActivity {

  private WebView webView;

  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // ... Register the WebView.

    webView = new WebView(this);
    WebSettings webSettings = webView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    webView.setWebViewClient(
        new WebViewClient() {
          // 1. Implement the web view click handler.
          @Override
          public boolean shouldOverrideUrlLoading(
              WebView view,
              WebResourceRequest request) {
            // 2. Determine whether to override the behavior of the URL.
            // If the target URL has no host, return early.
            if (request.getUrl().getHost() == null) {
              return false;
            }

            // Handle custom URL schemes such as market:// by attempting to
            // launch the corresponding application in a new intent.
            if (!request.getUrl().getScheme().equals("http")
                && !request.getUrl().getScheme().equals("https")) {
              Intent intent = new Intent(Intent.ACTION_VIEW, request.getUrl());
              // If the URL cannot be opened, return early.
              try {
                MainActivity.this.startActivity(intent);
              } catch (ActivityNotFoundException exception) {
                Log.d("TAG", "Failed to load URL with scheme:" + request.getUrl().getScheme());
              }
              return true;
            }

            String currentDomain;
            // If the current URL's host cannot be found, return early.
            try {
              currentDomain = new URI(view.getUrl()).toURL().getHost();
            } catch (URISyntaxException | MalformedURLException exception) {
              // Malformed URL.
              return false;
            }
            String targetDomain = request.getUrl().getHost();

            // If the current domain equals the target domain, the
            // assumption is the user is not navigating away from
            // the site. Reload the URL within the existing web view.
            if (currentDomain.equals(targetDomain)) {
              return false;
            }

            // 3. User is navigating away from the site, open the URL in
            // Custom Tabs to preserve the state of the web view.
            CustomTabsIntent intent = new CustomTabsIntent.Builder().build();
            intent.launchUrl(MainActivity.this, request.getUrl());
            return true;
          }
        });
  }
}

Kotlin

class MainActivity : AppCompatActivity() {

  private lateinit var webView: WebView

  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)

    // ... Register the WebView.

    webView.webViewClient = object : WebViewClient() {
      // 1. Implement the web view click handler.
      override fun shouldOverrideUrlLoading(
          view: WebView?,
          request: WebResourceRequest?
      ): Boolean {
        // 2. Determine whether to override the behavior of the URL.
        // If the target URL has no host, return early.
        request?.url?.host?.let { targetDomain ->
          val currentDomain = URI(view?.url).toURL().host

          // Handle custom URL schemes such as market:// by attempting to
          // launch the corresponding application in a new intent.
          if (!request.url.scheme.equals("http") &&
              !request.url.scheme.equals("https")) {
            val intent = Intent(Intent.ACTION_VIEW, request.url)
            // If the URL cannot be opened, return early.
            try {
              this@MainActivity.startActivity(intent)
            } catch (exception: ActivityNotFoundException) {
              Log.d("TAG", "Failed to load URL with scheme: ${request.url.scheme}")
            }
            return true
          }

          // If the current domain equals the target domain, the
          // assumption is the user is not navigating away from
          // the site. Reload the URL within the existing web view.
          if (currentDomain.equals(targetDomain)) {
            return false
          }

          // 3. User is navigating away from the site, open the URL in
          // Custom Tabs to preserve the state of the web view.
          val customTabsIntent = CustomTabsIntent.Builder().build()
          customTabsIntent.launchUrl(this@MainActivity, request.url)
          return true
        }
        return false
      }
    }
  }
}

अपने पेज नेविगेशन की जांच करना

अपने पेज नेविगेशन के बदलावों की जांच करने के लिए, लोड करें

https://webview-api-for-ads-test.glitch.me#click-behavior-tests

अपने वेब व्यू में. अलग-अलग तरह के लिंक पर क्लिक करके देखें कि वे आपके ऐप्लिकेशन के साथ कैसे व्यवहार करना चाहिए.

यहां जांच करने योग्य कुछ बातें बताई गई हैं:

  • हर लिंक सही यूआरएल खोलता है.
  • ऐप्लिकेशन पर वापस लौटने पर, परीक्षण पेज का काउंटर शून्य पर रीसेट नहीं होता है पुष्टि करने के लिए पेज की स्थिति को सुरक्षित रखा गया है.