CharCountTextView


Source link: https://github.com/broakenmedia/CharCountTextView

CharCountTextView

A Twitter style post length counter which can be bound to an EditText and provide callbacks when hitting a max character count.

Once bound to an EditText the characters remaining will go down as the user types. If the user goes over the max limit you will get notified and the view will show how much they are over (-5 etc.) where you can disable UI accordingly.

Note: When the user has 10% or less characters remaining the text color will change to use the "exceededTextColor" below (Default: RED)

Normal Count Exceeded

##Install

Add this to your project build.gradle

allprojects {

  repositories {

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

  
}
 
}

Add this to your module build.gradle

dependencies {

  compile 'com.github.broakenmedia:CharCountTextView:v1.0' 
}

###Usage

Add the following xml to your layout xml

<com.wafflecopter.charcounttextview.CharCountTextView
  android:id="@+id/tvTextCounter"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  app:maxCharacters="150" //Optional - Defaults to 150 (Twitter Emulation)
  app:exceededTextColor="#ff0000" //Optional - Defaults to RED /> 

Then in your activity/fragment:

CharCountTextView tvCharCount = (CharCountTextView) findViewById(R.id.tvTextCounter);
 tvCharCount.setEditText(EDITTEXT_I_WISH_TO_COUNT_FOR);
 tvCharCount.setCharCountChangedListener(new CharCountTextView.CharCountChangedListener() {

  @Override
  public void onCountChanged(int countRemaining, boolean hasExceededLimit) {

//Enable disable tweet button for example
  
}
 
}
);

Additonal Methods

To set the max no. of characters and character count exceeded text color dynamically:

 - setMaxCharacters(int maxCharacters);

- setExceededTextColor(int colorRes);
 //Font color will change to this when count has 10% or less remaining

License

Copyright (c) BroakenMedia 2016-2017  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

Simple file dump utility for Android.

An animated circle loading view.

Bubbles for Android is an Android library to provide chat heads capabilities on your apps. With a fast way to integrate with your development.

Processor workflow is a library that facilitates the development of an annotation processor in Java. It offers an efficient workflow to handle the steps of parsing annotations, extracting useful data, and then generating some java code.

Demo project that uses Mortar and Mortar architect libraries, along with Dagger2.

Demo project for Mortar / Flow / Dagger2 with Auto Dagger2 and Auto Mortar.

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