Android平板设备上的数字小键盘自定义控件的实现(非弹出软键盘)
程序开发
2023-09-23 19:34:39
最近公司项目需要在输入信息界面上设置自定义数字小键盘,使用非android系统自带键盘来输入。
且有多个界面需要该键盘,因此将其写成自定义控件以便复用。 先来个效果图: 接下来开始一步步实现这个小键盘了! 首先上布局,布局也就是自定义控件的布局,将来要在代码中引用过去的,效果如上图,由16个Button组成, 本人比较喜欢线性布局,因此一律用线性布局完成,因人而异,相对也可。设置按钮背景selector(这个是效果,按需求来)。
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal" >
android:id="@+id/bt_keyboard_4"
android:layout_width=
标签:
上一篇:
如何自定义调整bootstrap的模态框大小
下一篇:
相关文章
-
无相关信息