SpanEZ


Source link: https://github.com/yombunker/SpanEZ

SpanEZ

Complete abstraction from the Spannable API. Forget about all the boiler plate code and all the [Object what][1] nonsense that you have to deal with when working with Spannable.

  • Eliminate setSpan calls by using all the provided methods trough the StyleEZ interface.
  • Chain multiple spans with a fluent style
  • By using both the ContentEZ and StyleEZ interface it removes unnecessary methods from the autocomplete form, and thus it removes clutter.
  • Allows different ways of adding content (String, String Resource and Formatted String)
  • By default it does [INCLUSIVE_INCLUSIVE][2] to all the spans
  • After calling any of the inclusive/exclusive methods, all the next methods will be using that flag until apply is called or another flag is used
  • You can create your own locator by extending the Locator interface

How to use

Let's start with the easiest example, you need just one Span in your content

public class MainActivity extends AppCompatActivity {

  private TextView sample;

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 sample = (TextView) findViewById(R.id.sample_text);

SpanEZ.from(sample)

  // 1. pass the target TextView

.withContent(R.string.lorem_ipsum)

  // 2. pass the content

.style(Word.findAll("ipsum dolor"), BOLD | UNDERLINE) // 3. chain styles (optional)

.apply();

// 4. apply
  
}
 
}

Now, let's go to the big leagues, you can get this and even more, and just with a couple of lines:

public class MainActivity extends AppCompatActivity {

  private TextView sample;

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 sample = (TextView) findViewById(R.id.sample_text);

SpanEZ.from(sample)

.withContent(R.string.lorem_ipsum)

.absoluteSize(Range.from(0, 5), 20)

.absoluteSizeDP(Range.from(6, 10), 34)

.exclusive()

.backgroundColor(Word.findFirst("ipsum dolor"), R.color.colorPrimary)

.backgroundColor(Range.from(30, 50), R.color.colorPrimaryDark)

.foregroundColor(Range.from(45, 100), R.color.colorAccent)

.inclusiveExclusive()

.style(Word.findAll("ipsum"), BOLD | UNDERLINE)

.style(Word.findFirst("ipsum"), ITALIC | STRIKETHROUGH)

.link(Word.findFirst("ut ultricies dolor molestie eget. Aliquam scelerisque, elit sit amet faucibus tincidunt"), "http://www.google.com")

.clickable(Word.findFirst("Mauris in lacus at nulla consectetur dapibus. Sed accumsan sapien nec nisi mattis pulvinar."), new OnSpanClickListener() {

 @Override

 public void onSpanClick(String spanContent) {

  Toast.makeText(MainActivity.this, spanContent, Toast.LENGTH_SHORT).show();

 
}

}
)

.inclusive()

.quote(Paragraph.containing("Lorem"))

.scaleX(Range.from(60, 80), 2)

.apply();
 // Calling the apply method is the only one that MUST be done in UIThread
  
}
 
}

Download

dependencies {

compile 'com.bunk3r:spanez:2.x.x' 
}

License

Copyright 2017 Jorge Aguilar  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. 

[1]: https://developer.android.com/reference/android/text/Spannable.html#setSpan(java.lang.Object, int, int, int) [2]: https://developer.android.com/reference/android/text/Spanned.html#SPAN_INCLUSIVE_INCLUSIVE

Resources

OkResponseFaker uses a special OkHttp Interceptor that allows you to provide a custom response for the next or more requests executed, allowing you to easily debug feedback to special cases in your application. You can fake response status and body using the FakeResponse interface. Use simple static data, or build a complex response using JSON objects.

A collection of examples demonstrating different techniques for automated testing with Espresso.

Android Library to handle soft keyboard visibility change event. Show/hide keyboard methods are also included.

An implementation of a circular button made of paper that lifts and emits ink reactions on press.

FontIcon is a simple library which allows to use font-based icons in Android.

Xdroid - extensions library for any Android app.

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