美文网首页
自定义车牌号输入框/输入键盘(edittext设置字左右间距)

自定义车牌号输入框/输入键盘(edittext设置字左右间距)

作者: 筱宓dawnLing | 来源:发表于2018-09-03 14:43 被阅读321次

按照以往惯例先上效果:


效果.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" />

自定义键盘

自定义键盘的方式略不灵活,希望有更好方法的小伙伴不吝分享~

相关文章

网友评论

      本文标题:自定义车牌号输入框/输入键盘(edittext设置字左右间距)

      本文链接:https://www.haomeiwen.com/subject/fehghftx.html