MarkupAndroid


Source link: https://github.com/shree-vastava/MarkupAndroid

Welcome to the MarkupAndroid wiki!

So, this library is for highlighting or adding note to a particular text.

Watch it in action here

How to add

Add this in the project level build.gradle:



 repositories{

 ....

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

  
}
 

and this in the module's build.gradle:



  compile 'com.github.shree-vastava:MarkupAndroid:v1.0' 

Highlights

If you want to add multiple Highlights in a page, create highlight objects (The model class is provided in the library), and keep adding the objects in a list.. Voila!! there you have all the highlights..



HighlightModel model = new HighlightModel();
 // creating a model object, model class from library.

 model.setStartIdx(textView.getSelectionStart());
// start index of text you want to highlight

 model.setEndIdx(textView.getSelectionEnd());
// end index of text you want to highlight

 model.setColor(Color.BLUE);
 // color of highlight

  highList.add(model);
 // Adding the object in a list for example : List<HighlightModel>

  MarkupAndorid markUp = new MarkupAndorid();
 //creating an object of library class

 markUp.highlight(MainActivity.this,textView,highList);
 //calling the function to highlight 

Notes

If you want to add multiple Notesin a page, create Notes objects (The model class is provided in the library), and keep adding the objects in a list.. Voila!! there you have all the Notes..



NotesModel model = new NotesModel();
 //create object of notes model class

 model.setStartIdx(textView.getSelectionStart());
 // setting start index

 model.setEndIdx(textView.getSelectionEnd());
 //setting end index

 model.setNote("Aquaman Sucks!");
 //setting text note thath you want to add

  notesList.add(model);
 //adding in a list

  MarkupAndorid markUp = new MarkupAndorid();
 //create library class object

 markUp.addNote(MainActivity.this,textView,notesList);
 //calling method to add note 

Notes and Highlights both



MarkupAndorid markUp = new MarkupAndorid();

 markUp.addAll(MainActivity.this,textView,notesList,highList);
 //notesList and highList are the lists of corresponding objects. exactly like in the above examples 

Resources

By default OkHttp3 provides only in-memory implementation of CookieStore thus all the cookies won't survive for a long term changes. This is persistent cookie storage based on SharedPreferences.

A library that offers a generic implementation of the domain and data layers from the clean architecture.

A small Android sample demonstrates MVP (Model-View-Presenter) pattern.

DebugKit lib for Android allows you to use a fancy hovering debug tool to trigger some actions directly in the app. This tool is very useful to trigger some event at runtime, and to have a written feedback directly on your testing phone screen.

Traceur enables easier debugging of RxJava2 exceptions, by appending the source of any asynchronous calls to the original exception.

Lyra is a library that can save and restore the state of Android components easily through annotations. It will replace all the boilerplate code from onSaveInstanceState() to save and restore the state of your variables.

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