All Projects → fobidlim → webviewer-android

fobidlim / webviewer-android

Licence: Apache-2.0 License
Simple WebView for Android

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to webviewer-android

AnyWebView
Any WebView is OK!
Stars: ✭ 64 (+326.67%)
Mutual labels:  webview
rn-webview-bridge-sample
React Native WebView bridge sample
Stars: ✭ 40 (+166.67%)
Mutual labels:  webview
msLog
log for webView & webApp 用于webView和webApp的log工具
Stars: ✭ 25 (+66.67%)
Mutual labels:  webview
react-native-web-view
An implementation of React Native's WebView that allows for postMessage on iOS devices.
Stars: ✭ 13 (-13.33%)
Mutual labels:  webview
react-native-react-bridge
An easy way to integrate your React (or Preact) app into React Native app with WebView.
Stars: ✭ 84 (+460%)
Mutual labels:  webview
appWeiboInfoCrawl
use webview let user to login Weibo,and the auto get user info(使用webview让用户授权登录微博,然后自动获取用户信息)
Stars: ✭ 27 (+80%)
Mutual labels:  webview
react-native-codeditor
React Native component to display code editor using WebView and CodeMirror
Stars: ✭ 21 (+40%)
Mutual labels:  webview
RNApp
react native app
Stars: ✭ 43 (+186.67%)
Mutual labels:  webview
flutter-webview-windows
A WebView2-powered Flutter WebView implementation for the Windows platform.
Stars: ✭ 83 (+453.33%)
Mutual labels:  webview
os-fileup
Helper app to understand how to upload files and do basic image/video processing in hybrid android apps.
Stars: ✭ 207 (+1280%)
Mutual labels:  webview
CefGlue
.NET binding for The Chromium Embedded Framework (CEF)
Stars: ✭ 44 (+193.33%)
Mutual labels:  webview
frida-uiwebview
Inspect and manipulate UIWebView-hosted GUIs through Frida.
Stars: ✭ 36 (+140%)
Mutual labels:  webview
webview
Nim bindings for https://github.com/zserge/webview
Stars: ✭ 91 (+506.67%)
Mutual labels:  webview
Web Vuw
A Web View for flutter
Stars: ✭ 40 (+166.67%)
Mutual labels:  webview
RxWebView
RxJava2 binding APIs for Android's WebView
Stars: ✭ 22 (+46.67%)
Mutual labels:  webview
webviewer-angular-sample
Sample to demonstrate integrating WebViewer into Angular
Stars: ✭ 29 (+93.33%)
Mutual labels:  webviewer
animaris
Documentation and Mock for JSBridge base on ThinkJS & MongoDB & React & Antd.
Stars: ✭ 28 (+86.67%)
Mutual labels:  webview
x5 webview flutter
一个基于腾讯x5引擎的webview flutter插件,简化集成,一行代码打开视频播放,暂时只支持android使用
Stars: ✭ 90 (+500%)
Mutual labels:  webview
WebViewJavaScriptBridge
android webview javascript bridge
Stars: ✭ 24 (+60%)
Mutual labels:  webview
webviewhs
🌐 A Haskell binding to the webview library created by Serge Zaitsev.
Stars: ✭ 109 (+626.67%)
Mutual labels:  webview

WebViewer Library

Android Arsenal

Join the chat at https://gitter.im/fobid/webviewer/Lobby

Github Release

You can download WebViewer Sample application on Google Play.

Get it on Google Play

Download

Download the latest JAR or grab via Maven:

<dependency>
  <groupId>com.github.fobid</groupId>
  <artifactId>webviewer</artifactId>
  <version>0.71.0</version>
</dependency>

or Gradle:

compile 'com.github.fobid:webviewer:0.71.0'

Usage

1. Include WebViewer into your AndroidManifest.xml.

<activity
    android:name="com.tfc.webviewer.ui.WebViewerActivity"
    android:configChanges="orientation|screenSize" />

2. Start webViewerActivity with URL.

String url = "https://www.github.com/fobidlim";
// String url = "www.github.com/fobidlim";
// String url = "github.com/fobidlim";

Intent intent = new Intent(Context, WebViewerActivity.class);
intent.putExtra(WebViewerActivity.EXTRA_URL, url);
startActivity(intent);

License

Copyright 2021 fobidlim

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.

Translation

Korean

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].