zoukankan      html  css  js  c++  java
  • 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);(关闭软键盘。。。)

  • 相关阅读:
    并发编程(2)-进程、并发和并行讲解
    并发编程(5)-管道、数据共享、进程池
    并发编程(4)-进程中的锁、信号量、 事件和队列
    人工智能及数学运算的基础方法
    并发编程(3)-进程模块
    判断一个数是否是水仙花数
    js中隐式类型转换测试
    webpack使用webpack-dev-middleware进行热重载
    网页打包安卓APP流程
    「postgres」查看数据库连接数
  • 原文地址:https://www.cnblogs.com/ruiati/p/4242067.html
Copyright © 2011-2022 走看看