码迷,mamicode.com
首页 > 移动开发 > 详细

Android 偶遇小问题解决方案集合

时间:2016-04-14 20:56:54      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

1、Android 如何让EditText不自动获取焦点

 

解决方案:找一个EditText的父级控件把EditText默认的行为截断了!设置

android:focusable="true"
android:focusableInTouchMode="true">

示例:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

Android 偶遇小问题解决方案集合

标签:

原文地址:http://www.cnblogs.com/yishujun/p/5392608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!