软键盘遮挡

2024-05-05 03:18
文章标签 软键盘 遮挡

本文主要是介绍软键盘遮挡,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在应用登陆页面我们需要填写用户名和密码。当填写这些信息的时候,软键盘会遮挡登陆按钮,这使得用户体验较差,所以今天就来解决这个问题

1:登陆布局界面如下

[html]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:background="@drawable/login_bg" >  
  6.   
  7.     <LinearLayout  
  8.         android:id="@+id/ll_center"  
  9.         android:layout_width="fill_parent"  
  10.         android:layout_height="wrap_content"       
  11.         android:orientation="vertical" >  
  12.   
  13.         <ScrollView  
  14.             android:id="@+id/sl_center"  
  15.             android:layout_width="fill_parent"  
  16.             android:layout_height="0dp"  
  17.             android:layout_weight="1"  
  18.             android:fadingEdge="none"  
  19.             android:scrollbars="none" >  
  20.   
  21.             <RelativeLayout  
  22.                 android:id="@+id/rl_center"  
  23.                 android:layout_width="fill_parent"  
  24.                 android:layout_height="wrap_content" >  
  25.   
  26.                 <LinearLayout  
  27.                     android:id="@+id/sms_login_ll_title"  
  28.                     android:layout_width="wrap_content"  
  29.                     android:layout_height="wrap_content"  
  30.                     android:layout_centerHorizontal="true"  
  31.                     android:layout_marginTop="90dip"  
  32.                     android:orientation="horizontal" >  
  33.   
  34.                     <ImageView  
  35.                         android:id="@+id/sms_login_iv_icon"  
  36.                         android:layout_width="70dip"  
  37.                         android:layout_height="70dip"  
  38.                         android:layout_gravity="center_vertical"  
  39.                         android:src="@drawable/login_top_icon" />  
  40.   
  41.                     <ImageView  
  42.                         android:id="@+id/sms_login_iv_big_text"  
  43.                         android:layout_width="wrap_content"  
  44.                         android:layout_height="wrap_content"  
  45.                         android:layout_gravity="center_vertical"  
  46.                         android:layout_marginLeft="15dip"  
  47.                         android:src="@drawable/sms_login_icon_big" />  
  48.                 </LinearLayout>  
  49.   
  50.                 <ImageView  
  51.                     android:id="@+id/sms_login_iv_name"  
  52.                     android:layout_width="wrap_content"  
  53.                     android:layout_height="wrap_content"  
  54.                     android:layout_below="@id/sms_login_ll_title"  
  55.                     android:layout_centerHorizontal="true"  
  56.                     android:layout_marginTop="28dip"  
  57.                     android:background="@drawable/sms_login_icon_small" />  
  58.   
  59.                 <RelativeLayout  
  60.                     android:id="@+id/sms_login_rl_input_name"  
  61.                     android:layout_width="fill_parent"  
  62.                     android:layout_height="43dip"  
  63.                     android:layout_below="@id/sms_login_iv_name"  
  64.                     android:layout_centerHorizontal="true"  
  65.                     android:layout_marginLeft="40dip"  
  66.                     android:layout_marginRight="40dip"  
  67.                     android:layout_marginTop="40dip"  
  68.                     android:background="@drawable/login_top_input" >  
  69.   
  70.                     <ImageView  
  71.                         android:id="@+id/sms_login_iv_input_name_icon"  
  72.                         android:layout_width="wrap_content"  
  73.                         android:layout_height="wrap_content"  
  74.                         android:layout_alignParentLeft="true"  
  75.                         android:layout_centerVertical="true"  
  76.                         android:layout_marginLeft="10dip"  
  77.                         android:layout_marginRight="10dip"  
  78.                         android:background="@drawable/login_input_icon_user" />  
  79.   
  80.                     <FrameLayout  
  81.                         android:layout_width="fill_parent"  
  82.                         android:layout_height="wrap_content"  
  83.                         android:layout_centerVertical="true"  
  84.                         android:layout_toRightOf="@id/sms_login_iv_input_name_icon" >  
  85.   
  86.                         <EditText  
  87.                             android:id="@+id/sms_login_et_accout"  
  88.                             android:layout_width="fill_parent"  
  89.                             android:layout_height="wrap_content"  
  90.                             android:background="@drawable/transparent_white"  
  91.                             android:digits="@string/sms_login_accout_text"  
  92.                             android:hint="请输入账号"  
  93.                             android:singleLine="true"  
  94.                             android:text=""  
  95.                             android:textSize="20sp" />  
  96.                     </FrameLayout>  
  97.                 </RelativeLayout>  
  98.   
  99.                 <RelativeLayout  
  100.                     android:id="@+id/sms_login_rl_input_pass"  
  101.                     android:layout_width="fill_parent"  
  102.                     android:layout_height="43dip"  
  103.                     android:layout_below="@id/sms_login_rl_input_name"  
  104.                     android:layout_centerHorizontal="true"  
  105.                     android:layout_marginLeft="40dip"  
  106.                     android:layout_marginRight="40dip"  
  107.                     android:background="@drawable/login_top_input" >  
  108.   
  109.                     <ImageView  
  110.                         android:id="@+id/sms_login_iv_input_pass_icon"  
  111.                         android:layout_width="wrap_content"  
  112.                         android:layout_height="wrap_content"  
  113.                         android:layout_alignParentLeft="true"  
  114.                         android:layout_centerVertical="true"  
  115.                         android:layout_marginLeft="10dip"  
  116.                         android:layout_marginRight="10dip"  
  117.                         android:background="@drawable/login_input_icon_pwd" />  
  118.   
  119.                     <FrameLayout  
  120.                         android:layout_width="fill_parent"  
  121.                         android:layout_height="wrap_content"  
  122.                         android:layout_centerVertical="true"  
  123.                         android:layout_toRightOf="@id/sms_login_iv_input_pass_icon" >  
  124.   
  125.                         <EditText  
  126.                             android:id="@+id/sms_login_et_password"  
  127.                             android:layout_width="fill_parent"  
  128.                             android:layout_height="wrap_content"  
  129.                             android:background="@drawable/transparent_white"  
  130.                             android:digits="@string/sms_et_change_password_old_text"  
  131.                             android:hint="请输入密码"  
  132.                             android:inputType="textPassword"  
  133.                             android:singleLine="true"  
  134.                             android:text=""  
  135.                             android:textSize="20sp" />  
  136.                     </FrameLayout>  
  137.                 </RelativeLayout>  
  138.             </RelativeLayout>  
  139.         </ScrollView>  
  140.   
  141.         <Button  
  142.             android:id="@+id/sms_login_bt_confirm"  
  143.             android:layout_width="fill_parent"  
  144.             android:layout_height="wrap_content"  
  145.             android:layout_below="@id/sms_login_rl_input_pass"  
  146.             android:layout_centerHorizontal="true"  
  147.             android:layout_marginLeft="40dip"  
  148.             android:layout_marginRight="40dip"  
  149.             android:layout_marginTop="16dip"  
  150.             android:background="@drawable/sms_update_pass_bg_selector"  
  151.             android:text="登 录"  
  152.             android:textColor="@color/white"  
  153.             android:textSize="20sp" />  
  154.     </LinearLayout>  
  155.    
  156. </RelativeLayout>  

需要注意的是:

1:层级关系

RelativeLayout-----

    LinearLayout----

     ScrollView,  

     Button

2:在AndroidManifest.xml中的该activity配置  android:windowSoftInputMode="stateHidden|adjustResize"

3:看如下代码

[java]  view plain copy print ? 在CODE上查看代码片 派生到我的代码片
  1. etAccount = (EditText) this.findViewById(R.id.sms_login_et_accout);  
  2.         etAccount.setOnClickListener(this);  
  3.         etAccount.setOnTouchListener(new OnTouchListener() {  
  4.             @Override  
  5.             public boolean onTouch(View v, MotionEvent event) {  
  6.                 changeScrollView();   
  7.                 return false;  
  8.             }  
  9.         });  
  10.     /** 
  11.      * 使ScrollView指向底部 
  12.      */  
  13.     private void changeScrollView(){  
  14.         h.postDelayed(new Runnable() {  
  15.             @Override  
  16.             public void run() {  
  17.                 sl_center.scrollTo(0, sl_center.getHeight());   
  18.             }  
  19.         }, 300);  
  20.     }  
  21.       
  22.     Handler h = new Handler(){  
  23.         public void handleMessage(Message msg) {  
  24.         };  
  25.     };  

4:具体问题具体分析,方法有多种,欢迎大家讨论。

这篇关于软键盘遮挡的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/960698

相关文章

安卓实现弹出软键盘屏幕自适应调整

今天,我通过尝试诸多方法,最终实现了软键盘弹出屏幕的自适应。      其实,一开始我想通过EditText的事件来实现,后来发现,安卓自带的函数十分强大,只需几行代码,便可实现。实现如下:     在Manifest中设置activity的属性:android:windowSoftInputMode="adjustUnspecified|stateHidden|adjustResi

【Unity小技巧】URP管线遮挡高亮效果

前言 在URP渲染管线环境下实现物体遮挡高亮显示效果,效果如下: Unity URP遮挡高亮 实现步骤 创建层级,为需要显示高亮效果的物体添加层级,比如Player 创建一个材质球,也就是高亮效果显示的材质球找到Universal Renderer Data Assets 4.在Assets上添加两个Render Objects组件 第一个做如下三处设置 指定遮挡层级指

Android软键盘相关

1 Android显示和隐藏软键盘方法 1.1 InputMethodManager类 Android中软键盘的管理主要是通过InputMethodManager类来完成的。InputMethodManager对象的获取方法如下: InputMethodManager mInputMethodManager = (InputMethodManager) getSystemService(Co

PopupWindow使用和遮挡虚拟按键处理

PopupWindow顾名思义,就是一个弹出窗口。不过特性倒是挺好玩的: 以弹出窗口的形式展示,可以替代系统的dialog。 可以在任意位置出现,并且会浮动在当前窗口的顶部(获取焦点)。 可以用来装载任意的view。 通过设置背景颜色0xaa000000可以实现半透明效果 关于点击消失: 如果需要点击外部消失,只需设置背景,foucs,outSideTouchable。 this.s

禁止Edittext弹出系统软键盘 的几种方法

第一种方法:EditText的父布局中添加 android:focusable="true"    android:focusableInTouchMode="true" 第二种方法:直接关闭输入法 在onCreate中加上: getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDE

如何获取Android软键盘状态和软键盘高度

应用场景 在Android应用中有时会需要获取软键盘的状态(即软键盘是显示还是隐藏)和软键盘的高度。这里列举了一些可能的应用场景。 场景一 当软键盘显示时,按下返回键应当是收起软键盘,而不是回退到上一个界面,但部分机型在返回键处理上有bug,按下返回键后,虽然软键盘会自动收起,但不会消费返回事件,导致Activity还会收到这次返回事件,执行回退操作,这时就需要判断,如果软键盘刚刚由显示变为

android屏蔽软键盘并且显示光标

转自: http://blog.csdn.net/danielinbiti/article/details/12972671 如果是android4.0以下,那么 editText.setInputType(InputType.TYPE_NULL); editText.setInputType(InputType.TYPE_NULL);就够了,and

QT-数字软键盘

一、演示效果 二、关键程序 关键槽函数代码如下: ivoid NumKeyboard::slotNumClick(){m_strText = ui.lineEdit->text();QPushButton *btn = qobject_cast<QPushButton *>(sender());QString strObjectName = sender()->objectName()

角色和背景遮挡半透明效果的实现

这里讲的是关于2D游戏的角色和背景以及物体之间的遮挡关系,用半透明角色处理的讨论和实现方式。这里主要是讨论关于页游《火影忍者》里对于角色和背景物体之间的遮挡处理方式。同时也实现了和他一样的效果(可能)。具体是没分析火影的代码,只是猜测了它的原理然后进行实现的。其他的几种实现方式则简单的讨论,一笔带过(如果有人有兴趣,可以留言,我再单独写篇Blog和相关例子来)  实现语言:ActionScr

Unity URP Shader 修改深度让人物不再被地面遮挡

Unity URP Shader 修改深度让人物不再被地面遮挡 前言项目场景布置代码编写 前言 遇到一个小问题,人物总是被XY平面的地面遮挡,于是在Shader中改一下深度输出,这样地面再也不会挡住人物了。 项目 场景布置 将人物放到XY平面的后面 配置Shader参数 代码编写 Shader "Unlit/DepTest"{Properties{[Main