`
Mr.Joe
  • 浏览: 133485 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android EditText控件自动获取焦点弹出键盘解决方法

阅读更多
最近刚学android,遇到这样的问题,在使用了EditText控件后,进入页面会自动获取焦点并弹出键盘,找到的解决方法如下:

在布局文件中解决
在EditText前面写一个宽高都为0的LinearLayout控件,让其获取焦点
<LinearLayout
        android:layout_width="0px"
        android:layout_height="0px"
        android:focusable="true"
        android:focusableInTouchMode="true" />
0
0
分享到:
评论
1 楼 DanielHan 2014-07-08  
在avd上测试,不会出现这种情况?

相关推荐

Global site tag (gtag.js) - Google Analytics