Divider EditText is an EditText for separating letters in android application.
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency:
dependencies {
implementation 'com.github.softrunapp:divider-edit-text:1.1.0'
}
<com.softrunapps.divideredittext.DividerEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dividerLength="4"
app:dividerValue="-" />