All Projects → louisgeek → LG_LinesEditView

louisgeek / LG_LinesEditView

Licence: other
Android 多行文本输入框 字数统计 限制字数

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to LG LinesEditView

SheenValidator
Android library to make form validation easier
Stars: ✭ 29 (-6.45%)
Mutual labels:  edittext
KodeEditor
A simple code editor with syntax highlighting and pinch to zoom
Stars: ✭ 60 (+93.55%)
Mutual labels:  edittext
how-many-lines
🎮 How many lines of code have you written throughout your journey on GitHub?
Stars: ✭ 21 (-32.26%)
Mutual labels:  lines
passport
A Kotlin-based Android view validation library with a simple DSL.
Stars: ✭ 31 (+0%)
Mutual labels:  edittext
image-generator
Package for PHP 8.x to generate placeholder images with a specific size, color, text on it. You can also customize the font. (Legacy version available for PHP 7.x.)
Stars: ✭ 16 (-48.39%)
Mutual labels:  multiline
EasyMoney-Widgets
The widgets (EditText and TextView) for support of money requirements like currency, number formatting, comma formatting etc.
Stars: ✭ 91 (+193.55%)
Mutual labels:  edittext
FieldsLinker
Designed for matching files headers to database fields during the process importing. Allows drawing links between elements of 2 lists
Stars: ✭ 18 (-41.94%)
Mutual labels:  lines
VerifyBlocksView
Android view for providing blocks (Edit Texts) to achieve verification process.
Stars: ✭ 28 (-9.68%)
Mutual labels:  edittext
currency-edittext
A Custom EditText implementation that allows formatting of currency-based numeric inputs.
Stars: ✭ 86 (+177.42%)
Mutual labels:  edittext
BlockEditText
Block EditText is a library provide an input view present in multiple block style that common use in TAC or credit card field.
Stars: ✭ 113 (+264.52%)
Mutual labels:  edittext
searchview
🔍 A beautiful searchview with animations.
Stars: ✭ 12 (-61.29%)
Mutual labels:  edittext
android native code view
A EditText with syntax highlight support
Stars: ✭ 23 (-25.81%)
Mutual labels:  edittext
ckLine
Generate random Background Lines it's great for Backgrounds
Stars: ✭ 20 (-35.48%)
Mutual labels:  lines
cvxpnpl
A Perspective-n-Points-and-Lines method.
Stars: ✭ 56 (+80.65%)
Mutual labels:  lines
android-prefix-suffix-edit-text
EditText with support for non editable prefix and suffix.
Stars: ✭ 36 (+16.13%)
Mutual labels:  edittext
TextViewPlus
an android library for setting custom font in xml layout
Stars: ✭ 27 (-12.9%)
Mutual labels:  edittext
nodejs-eol-converter-cli
Newline (EOL) coverter CLI for NodeJs. CRLF -> LF or backwards conversion.
Stars: ✭ 33 (+6.45%)
Mutual labels:  lines
TagEditText
A simple Android Tag EditText
Stars: ✭ 14 (-54.84%)
Mutual labels:  edittext
fastedit
安卓端高性能输入框。
Stars: ✭ 38 (+22.58%)
Mutual labels:  edittext
AutoFormatInputWatcher
This repository contains input watcher for auto formatting digits in edit text
Stars: ✭ 15 (-51.61%)
Mutual labels:  edittext

ClassicLinesEditView

多行文本输入框 带计数 限制文字数量

image

image

Step 1. Add the JitPack repository to your build file

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

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

Step 2. Add the dependency

dependencies {
          compile 'com.github.louisgeek:ClassicLinesEditView:x.x.x'
  }

attr

	 	<!--  
			默认 app:maxCount="240"   
			默认 app:IgnoreCnOrEn="true"
		-->
 <com.classichu.lineseditview.LinesEditView
        android:layout_margin="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />

code

		mClassicLinesEditView.setHintText("hintText");
	    mClassicLinesEditView.setContentText("ContentText");
	
	    Log.i(TAG, "onCreate: getHintText"+mClassicLinesEditView.getHintText());
	    Log.i(TAG, "onCreate: getContentText"+mClassicLinesEditView.getContentText());
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].