ExtraWebView


Source link: https://github.com/bkhezry/ExtraWebView

Extra WebView Library

the flexible and easy to use WebView library with beautiful themes.

A quick overview

  • compatible with API Level 17
  • RTL support
  • multi theme support
  • with full screen mode
  • share URL easy way
  • search in page support
  • with Bookmark and Vote icon that handle with EventBus library

Preview

Demo

You can download the latest demo APK from here: https://github.com/bkhezry/ExtraWebView/blob/master/assets/DemoExtraWebView-last.apk

Screenshots

### full screen mode

Setup

1. Provide the gradle dependency

Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {

...
maven {
 url "https://jitpack.io" 
}
  
}
 
}

Add the dependency:

dependencies {
  compile 'com.github.bkhezry:ExtraWebView:1.2.3' 
}

2. Add your code

add ItemActivity to AndroidManifest.xml

 <activity

 android:name="com.github.bkhezry.extrawebview.ItemActivity"

 android:screenOrientation="portrait" />
DataModel dataModel = new DataModelBuilder()

  .withId(id)

  .withType("blog")

  .withBy(authorName)

  .withTime(timestamp)

  .withUrl(url)

  .withDescription(description)

  .withBookmark(true)

  .withViewed(true)

  .withRank(0)

  .withVoted(true)

  .withPageTitle(title)

  .build();
 new ExtraWebViewCreator()  .withContext(MainActivity.this)  .withBookmarkIcon(true)  .withVoteIcon(true)  .withCustomFont("fonts/IRANSansMobile.ttf")  .withThemeName(themeName)  .withDataModel(dataModel)  .show();

after that new activity start with WebView ui

DataModel attributes

Name Type Default Description
id Long @NonNull unique id of post. use in bookmark and vote icon event handler
type String blog type of post. use in future development
by String @NonNull author name of post
time Long @NonNull create time of post as timestamp format
url String @NonNull url of post
description String @NonNull description of post
bookmark boolean false bookmark status of post
viewed boolean false viewed status of post. use in future development
rank integer 0 rank of post by users. use in future development
voted boolean false vote status of post
pageTitle String @NonNull title of post

ExtraWebViewCreator attributes

Name Type Default Description
context Context @NonNull context of current activity
bookmarkIcon boolean false show icon of bookmark when true
customFont String @Nullable use calligraphy library to set custom font. path of font in assets folder
themeName String light name of theme use in WebView ui
dataModel DataModel @NonNull object of DataModel class

List of theme name: light, dark, sepia, green, solarized and solarized_dark ThemePreference.java

Additional Setup

you can handle bookmark and vote icon click event. add this code to onCreate method of activity:

EventBus.getDefault().register(this);

after that subscribe method as listener:

@Subscribe(threadMode = ThreadMode.MAIN) public void doThis(IntentServiceResult intentServiceResult) {
  if (intentServiceResult.isChecked()) {

}
 else {

}
 
}

when each icon has been clicked, EventBus return object of IntentServiceResult.

IntentServiceResult attributes

Name Type value
id Long current post id
typeEvent String BOOKMARK or VOTE
isChecked boolean status of icon. if true icon is checked

Credits

Demo App using this library

Developed By

License

Copyright 2016 Behrouz Khezry  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. 

Resources

MaterialToolbar makes it easy to build a Fragment navigation based application with fully customized toolbar views.

Snake library is a simple and animation line chart for Android.

Content Provider ORM for android. This ORM uses an android sqlite database as a backing store, but interactes with it using content providers. You use it like a normal ORM, by creating java objects, and then do all of you interations through the objects. And you get the added benefits of using it like normal content providers, so integration with list views and other components are simple.

SimpleUI is an Android library which helps you creating the activity UI more easier. You just have to configure the main things instead of coding them yourself.

Login Basics is an implementation of an Android app that support Login with Facebook, Google Plus (G+) and your own login logic. The aim of this project is to serve as basis to build apps that require login as a feature.

A fully open source music player for Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes