自定义车牌号输入框/输入键盘(edittext设置字左右间距)
2018-09-03 本文已影响321人
筱宓dawnLing
按照以往惯例先上效果:
效果.gif
源码: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" />
自定义键盘
自定义键盘的方式略不灵活,希望有更好方法的小伙伴不吝分享~