素材巴巴 > 程序开发 >

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:id="@+id/bt_keyboard_1"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:background="@drawable/keyboard_keybg_selector"   android:text="1"   android:textColor="#fff"   android:textSize="40sp" />          android:id="@+id/bt_keyboard_2"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:layout_marginLeft="8dp"   android:background="@drawable/keyboard_keybg_selector"   android:text="2"   android:textColor="#fff"   android:textSize="40sp" />          android:id="@+id/bt_keyboard_3"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:layout_marginLeft="8dp"   android:background="@drawable/keyboard_keybg_selector"   android:text="3"   android:textColor="#fff"   android:textSize="40sp" />          android:id="@+id/bt_keyboard_abc"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:layout_marginLeft="8dp"   android:background="@drawable/keyboard_keybg_selector"   android:text="abc"   android:textColor="#fff"   android:textSize="40sp" />             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=                        

标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。