Skip to content

AhmadNemati/ClickableWebView

Repository files navigation

License Apache 2.0 minSdkVersion 9 compileSdkVersion 24

ClickableWebView

Simple WebView to Detect click on an image

Demo

alt tag

Setup

Step 1 :Add it as a dependency in your app's build.gradle file

compile 'com.ahmadnemati.clickablewebview:clickablewebview:1.1.2'    //jcenter()

Step 2 :Add it to your layout

  <com.ahmadnemati.clickablewebview.ClickableWebView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/clickable_webview"/>

Step 3 :Initialize WebView and setOnWebViewClickListener Method

        ClickableWebView clickableWebView;
        clickableWebView= (ClickableWebView) findViewById(R.id.clickable_webview);
        clickableWebView.setOnWebViewClickListener(new OnWebViewClicked() {
            @Override
            public void onClick(String url) {
                //just use url
            }
        });

Developed By

License

Copyright 2016 Ahmad Nemati

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.