休言女子非英物,夜夜龙泉壁上鸣。这篇文章主要讲述Android 如何让EditText不自动获取焦点 (转)相关的知识,希望能为你提供帮助。
【Android 如何让EditText不自动获取焦点 (转)】在项目中,一进入一个页面, EditText默认就会自动获取焦点。
那么如何取消这个默认行为呢?
在网上找了好久,有点
监听软键盘事件,有点
调用 clearFouse()方法,但是测试了都没有!
xml中也找不到相应的属性可以关闭这个默认行为
解决之道:在EditText的父级控件中找一个,设置成
Android:focusable="true"
android:focusableInTouchMode="true"
这样,就把EditText默认的行为截断了!
<
LinearLayout
style="@style/FillWrapWidgetStyle"
android:orientation="vertical"
android:background="@color/black"
android:gravity="center_horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
>
<
ImageView
android:id="@+id/logo"
style="@style/WrapContentWidgetStyle"
android:background="@drawable/dream_dictionary_logo"
/>
<
RelativeLayout
style="@style/FillWrapWidgetStyle"
android:background="@drawable/searchbar_bg"
android:gravity="center_vertical"
>
<
EditText
android:id="@+id/searchEditText"
style="@style/WrapContentWidgetStyle"
android:background="@null"
android:hint="Search"
android:layout_marginLeft="40dp"
android:singleLine="true"
/>
<
/RelativeLayout>
<
/LinearLayout>
来自:http://blog.csdn.NET/woshicaixianfeng/article/details/7261718
灰常感谢这位同学。。。
还有一个方法也可以非常简单的实现这个功能:
EditText对象的clearFocus();
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editMsgView.getWindowToken(), 0);
(关闭软键盘。。。)
推荐阅读
- [国家集训队2011]happiness(吴确) (最小割)
- react native中Unable to load script from assets 'index.android.bundle'解决方案
- 通过adb命令在Android设备中执行Java命令, 并调用so文件。
- Android Studio - 第四十七期 毛玻璃效果以及动态生成二维码以及增大点击热区
- 最新Android平台的13款最佳离线赛车游戏推荐合集
- Android和iOS的13款最佳卡通图片编辑或滤镜应用程序合集
- 下载Torrent文件的12种最佳uTorrent替代软件推荐合集
- 13个在Android和iOS上模糊照片背景的最佳应用推荐合集
- 清理和优化Mac的17个最佳MacCleaner应用程序(免费和付费)