我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android制作漂亮自适布局键盘的方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android制作漂亮自适布局键盘的方法

最近做了个自定义键盘,但面对不同分辨率的机型其中数字键盘不能根据界面大小自已铺满,但又不能每种机型都做一套吧,所以要做成自适应,那这里主讲思路。

这里最上面的titlebar高度固定,下面输入的金额高度也固定(当然也可以自适应),主要是中间的数字键盘,高度和宽度需要自适应。先来张效果图:

最常见的解决方案是用线性布局,自适应当然是按比例,但布局中无%的概念,那就要用到layout_weight了,该属性的作用是决定控件在其父布局中的显示权重(具体概念就不多说了)。

  这里用一个LinearLayout 将数字键盘与下面的支付类型进行包装,然后用一个大LinearLayout包住所有的数字键盘如下图,它与下面支付类型比例是6:1,这样数字键盘就会按屏幕大小高度与宽度进行变化,每一行数字键盘用一个LinearLayout,里面包3个数字显示Button按钮。

设置每行的LinearLayout的layout_height=0dp,layout_weight=1,具体设置如下:


 <style name="layout_input_amount_style">
  <item name="android:layout_width">match_parent</item>
  <item name="android:layout_height">0dp</item>
  <item name="android:layout_weight">1</item>
  <item name="android:layout_marginBottom">1dp</item>
  <item name="android:gravity">center</item>
  <item name="android:orientation">horizontal</item>
 </style>

  这样就保证了上下自适应布局。然后行里面的Button也是平均分配,不过这里是横向布局:layout_width=0dp,layout_weight=1,具体设置如下:


<style name="btn_input_amount_style">
  <item name="android:layout_width">0dp</item>
  <item name="android:layout_height">match_parent</item>
  <item name="android:layout_weight">1</item>
  <item name="android:textSize">40sp</item>
  <item name="android:textColor">#333333</item>
  <item name="android:background">@color/white</item>
 </style>

  这样就达到了上面的数字键盘的上下左右自适应了。现在的问题是其中的灰色边框怎么出来呢?TextView中没有设置border的属性,网上找的方法又很麻烦。

  这里需要用到一个技巧,利用灰色背景,让两个按键间的margin=1,上下也是margin=1,但是最右边的3、6、9和最后一行不用加。


<Button
 android:id="@+id/btn_1"
 style="@style/btn_input_amount_style"
 android:layout_marginRight="1dp"
 android:text="1" />

   为什么要设置layout_width=0dp?结合layout_weight,可以使控件成正比例显示,轻松解决了当前Android开发最为头疼的碎片化问题之一。如果设置成wrap_content,内容过长会导致上下无法对齐的情况。

  下面为整个布局内容:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.view.InputAmountActivity">
 <RelativeLayout
  android:id="@+id/bar_input"
  android:layout_width="match_parent"
  android:layout_height="@dimen/title_bar_height"
  android:background="@color/logo_background"
  android:orientation="horizontal">
  <TextView
   android:id="@+id/bar_back"
   android:layout_width="wrap_content"
   android:layout_height="match_parent"
   android:background="@color/transparent"
   android:drawableLeft="@drawable/btn_back_detail"
   android:paddingLeft="17dip"
   android:paddingRight="17dip" />
  <TextView
   android:id="@+id/bar_title"
   style="@style/title_text_style"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_centerInParent="true"
   android:layout_marginLeft="50dp"
   android:layout_marginRight="50dp"
   android:singleLine="true"
   android:text="输入金额" />
 </RelativeLayout>
 <LinearLayout
  android:id="@+id/txt_amount"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@id/bar_input"
  android:background="@color/logo_background">
  <TextView
   android:id="@+id/txt_pay_amount"
   android:layout_width="match_parent"
   android:layout_height="115dp"
   android:background="@color/transparent"
   android:gravity="right|center"
   android:paddingLeft="17dip"
   android:paddingRight="20dp"
   android:text="¥998"
   android:textColor="@color/white"
   android:textSize="40sp"
   android:textStyle="bold" />
 </LinearLayout>
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_below="@id/txt_amount"
  android:orientation="vertical">
  <LinearLayout
   android:id="@+id/table_num"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:layout_weight="6"
   android:background="#c8cbcc"
   android:orientation="vertical">
   <LinearLayout style="@style/layout_input_amount_style">
    <Button
     android:id="@+id/btn_1"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="1" />
    <Button
     android:id="@+id/btn_2"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="2" />
    <Button
     android:id="@+id/btn_3"
     style="@style/btn_input_amount_style"
     android:text="3" />
   </LinearLayout>
   <LinearLayout style="@style/layout_input_amount_style">
    <Button
     android:id="@+id/btn_4"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="4" />
    <Button
     android:id="@+id/btn_5"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="5" />
    <Button
     android:id="@+id/btn_6"
     style="@style/btn_input_amount_style"
     android:text="6" />
   </LinearLayout>
   <LinearLayout style="@style/layout_input_amount_style">
    <Button
     android:id="@+id/btn_7"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="7" />
    <Button
     android:id="@+id/btn_8"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="8" />
    <Button
     android:id="@+id/btn_9"
     style="@style/btn_input_amount_style"
     android:text="9" />
   </LinearLayout>
   <LinearLayout style="@style/layout_input_amount_style">
    <Button
     android:id="@+id/btn_t"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="." />
    <Button
     android:id="@+id/btn_0"
     style="@style/btn_input_amount_style"
     android:layout_marginRight="1dp"
     android:text="0" />
    <ImageButton
     android:id="@+id/btn_d"
     style="@style/btn_input_amount_style"
     android:class="lazy" data-src="@drawable/ico_del" />
   </LinearLayout>
  </LinearLayout>
  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="68dp"
   android:layout_weight="1"
   android:orientation="horizontal">
   <LinearLayout
    android:id="@+id/layout_zhifubao"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@color/logo_background"
    android:gravity="center"
    android:orientation="vertical">
    <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="9dp"
     android:class="lazy" data-src="@drawable/ico_zhifubao" />
    <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginBottom="9dp"
     android:text="支付宝"
     android:textColor="@color/white"
     android:textSize="12sp" />
   </LinearLayout>
   <LinearLayout
    android:id="@+id/layout_wechat"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="#3cb034"
    android:gravity="center"
    android:orientation="vertical">
    <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="9dp"
     android:class="lazy" data-src="@drawable/ico_wechat" />
    <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginBottom="9dp"
     android:text="微信"
     android:textColor="@color/white"
     android:textSize="12sp" />
   </LinearLayout>
   <LinearLayout
    android:id="@+id/layout_pay"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="#ff7700"
    android:gravity="center"
    android:orientation="vertical">
    <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="9dp"
     android:class="lazy" data-src="@drawable/ico_pay" />
    <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginBottom="9dp"
     android:text="储值"
     android:textColor="@color/white"
     android:textSize="12sp" />
   </LinearLayout>
  </LinearLayout>
 </LinearLayout>
</RelativeLayout>

  是不是很酷?

  图标什么的自己上网找吧,这里就不贴出来了。

Android制作漂亮自适布局键盘的方法就先给大家介绍到这里,后续还会持续更新相关知识,希望大家继续关注编程网网站,谢谢!

您可能感兴趣的文章:解析android中隐藏与显示软键盘及不自动弹出键盘的实现方法Android 设置Edittext获取焦点并弹出软键盘Android 显示和隐藏软键盘的方法(手动)Android 软键盘弹出时把原来布局顶上去的解决方法5种方法完美解决android软键盘挡住输入框方法详解Android键盘显示与隐藏代码Android软键盘遮挡的四种完美解决方案Android实现弹出键盘的方法Android中监听软键盘显示状态实现代码Android物理键盘事件解析


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android制作漂亮自适布局键盘的方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android制作漂亮自适布局键盘的方法

最近做了个自定义键盘,但面对不同分辨率的机型其中数字键盘不能根据界面大小自已铺满,但又不能每种机型都做一套吧,所以要做成自适应,那这里主讲思路。这里最上面的titlebar高度固定,下面输入的金额高度也固定(当然也可以自适应),主要是中间的
2022-06-06

Android布局之LinearLayout自定义高亮背景的方法

本文实例讲述了Android布局之LinearLayout自定义高亮背景的方法。分享给大家供大家参考,具体如下: 首先创建linearlayout_background.xml文件 res/drawable/linearlayout_bac
2022-06-06

Android 软键盘弹出时把原来布局顶上去的解决方法

键盘弹出时,会将布局底部的导航条顶上去。 解决办法: 在mainfest.xml中,在和导航栏相关的activity中加:
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录