按照以往惯例先上效果:
源码:https://github.com/LXLYHM/PlateNumberEditKeybor
设置输入框
android:letterSpacing="0.8"设置输入字体左右间距,从0开始数字越大间距越大
<EditText
android:id="@+id/etPlateNumber"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:gravity="center_vertical|left"
android:textCursorDrawable="@drawable/edit_cursor_color"
android:textSize="19sp"
android:textColor="@color/colorTextPrimary"
android:letterSpacing="0.8"
android:maxLength="8"
android:background="@color/colorwhite" />
自定义键盘
自定义键盘的方式略不灵活,希望有更好方法的小伙伴不吝分享~