博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
初始加载时edittext不自动获取焦点的方法
阅读量:6605 次
发布时间:2019-06-24

本文共 1141 字,大约阅读时间需要 3 分钟。

在做一个搜索功能时,刚进入界面,edittext直接自动获取焦点,这显然不是我想要的。

那么问题来了:如何关闭EditText自动获取焦点的?

尝试了好几个方法,在Java代码添加focus控制,在xml文件中的EditText控件中添加focusable约束等,都不适用于我的这个问题。

 

解决办法:在xml文件中EditText外框架里添加上android:focusable="true" android:focusableInTouchMode="true",这样问题就解决了。

 

[html]
  1. <RelativeLayout    
  2.         android:id="@+id/title"    
  3.         android:layout_width="fill_parent"    
  4.         android:layout_height="wrap_content"    
  5.         android:layout_alignParentLeft="true"    
  6.         android:layout_alignParentRight="true"    
  7.         android:layout_alignParentTop="true"    
  8.         android:background="#F8F8FF"    
  9.         android:focusable="true"    
  10.         android:focusableInTouchMode="true"    
  11.         android:paddingBottom="6dp" >    
  12.     
  13.         <EditText    
  14.             android:id="@+id/search"    
  15.             android:layout_width="wrap_content"    
  16.             android:layout_height="wrap_content"    
  17.             android:layout_alignParentLeft="true"    
  18.             android:layout_marginLeft="10dp"    
  19.             android:layout_marginRight="5dp"    
  20.             android:layout_marginTop="5dp"    
  21.             android:layout_toLeftOf="@+id/auto_add"    
  22.             android:background="@drawable/rounded_edittext"    
  23.             android:drawableLeft="@drawable/search"    
  24.             android:ems="10"    
  25.             android:hint="@string/hint_search"    
  26.             android:imeOptions="actionSearch"    
  27.             android:inputType="text"    
  28.             android:singleLine="true"    
  29.             android:textSize="15sp" >    
  30.         </EditText>   

转载地址:http://yefso.baihongyu.com/

你可能感兴趣的文章
Python初探
查看>>
Composer安装使用
查看>>
Android触碰事件
查看>>
Android应用开发-小巫CSDN博客客户端开发开篇
查看>>
享元模式
查看>>
HDU 2037 今年暑假不AC (贪心)
查看>>
Mybatis结合Spring注解自己主动扫描源代码分析
查看>>
数据库(分库分表)中间件对比
查看>>
2014年辛星jquery解读第三节 Ajax
查看>>
extern与头文件(*.h)的区别和联系
查看>>
opencv源代码分析之二:cvhaartraining.cpp
查看>>
《Javascript_Dom 编程艺术》(第2版)读书笔记
查看>>
Ubuntu 16.04通过Trickle限制某个软件的下载/上传速度
查看>>
Ubuntu 16.04安装Sublime Text3
查看>>
com.android.dex.DexException: Multiple dex files define Lcom/sina/sso/RemoteSSO;
查看>>
Threejs 开发3D地图实践总结
查看>>
ffmpeg、ffprobe、ffplay 常用参数及命令行示例说明
查看>>
python升级安装后的yum的修复
查看>>
清除掉AD的相关属性!
查看>>
SQL或HQL预编译语句,可以防止SQL注入,可是不能处理%和_特殊字符
查看>>