All Projects → AhmadNemati → ClickableWebView

AhmadNemati / ClickableWebView

Licence: Apache-2.0 license
Simple WebView to Detect click on an image

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to ClickableWebView

Cargo
🚂🚋🚋 A browser with almost no UI.
Stars: ✭ 221 (+426.19%)
Mutual labels:  webview
vue-js-bridge
vue-js-bridge for Vue.js
Stars: ✭ 41 (-2.38%)
Mutual labels:  webview
WebView-Advanced
A collection of android webview hack
Stars: ✭ 25 (-40.48%)
Mutual labels:  webview
unity-button-sounds-editor
Editor extension for Unity game engine. It helps to assign AudioClip to buttons and to play sounds by button clicks.
Stars: ✭ 65 (+54.76%)
Mutual labels:  click
Android-WebView-in-Kotlin
Native Android WebView Example in Kotlin. Website to android app github open source template.
Stars: ✭ 87 (+107.14%)
Mutual labels:  webview
rn-webview-rpc
Add RPC capabilities to a React Native WebView component
Stars: ✭ 25 (-40.48%)
Mutual labels:  webview
Recaptcha
[In]visible ReCaptcha v2 for iOS
Stars: ✭ 208 (+395.24%)
Mutual labels:  webview
EasyBrowser
尝试实现一个简易的Android浏览器。支持标签页的创建,切换,缓存。
Stars: ✭ 34 (-19.05%)
Mutual labels:  webview
MobOff
A CLI to download, convert and send youtube videos to several devices using Pushbullet.
Stars: ✭ 47 (+11.9%)
Mutual labels:  click
Webview-unity-3d-2017.3-or-higher-
Webview unity 3d 2017.3 or higher - can be open website url on unity3d or open Html5, html and js on unity offline
Stars: ✭ 18 (-57.14%)
Mutual labels:  webview
qml-webchannel-websockets
QML examples for WebChannel and WebSockets.
Stars: ✭ 26 (-38.1%)
Mutual labels:  webview
Google-Docs-for-Mac
Native Google Docs app for Mac
Stars: ✭ 33 (-21.43%)
Mutual labels:  webview
QuestionnaireView
A simple view to be able to display question and various field (Radio, EditText, checkbox ) for answers
Stars: ✭ 34 (-19.05%)
Mutual labels:  webview
React Native Webview Messaging
✉️ Send/Receive data between React Native app and WebView
Stars: ✭ 251 (+497.62%)
Mutual labels:  webview
DebounceMonitoring
📑 Add debounce logic for any method in a single line.
Stars: ✭ 44 (+4.76%)
Mutual labels:  click
React Native Webview Invoke
Invoke functions between React Native and WebView
Stars: ✭ 211 (+402.38%)
Mutual labels:  webview
WebViewNativeBridge
WebView bridge for android
Stars: ✭ 35 (-16.67%)
Mutual labels:  webview
AFWebViewController
In-app browser that uses WKWebView
Stars: ✭ 38 (-9.52%)
Mutual labels:  webview
KaTeXView
KaTeX View for android
Stars: ✭ 43 (+2.38%)
Mutual labels:  webview
XKCD
A minimal command line tool for your daily dose of xkcd comics written in python. Feel free to contribute!
Stars: ✭ 67 (+59.52%)
Mutual labels:  click

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].