«

Android 让EditText失去焦点避免自动弹出输入法

时间:2024-3-2 19:50     作者:韩俊     分类: Android


如果一进去activity,EditText就获取焦点,弹出输入法界面,无疑是很影响美观的。可以在其父组件(布局)上添加以下两句代码:

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

比如:
<RelativeLayout
        android:layout_width="match_parent" 
        android:layout_height="40dp"
        android:gravity="center_vertical"
        android:background="#ffffff"
        android:focusable="true" 
        android:focusableInTouchMode="true"
    >
    <EditText 
        android:layout_alignParentLeft="true"
        android:id="@+id/searchWordET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:hint="手机/邮箱"
        android:padding="10dp"
        android:imeOptions="actionSearch"
        android:singleLine="true" 
        android:textSize="13sp" />
</RelativeLayout>

版权声明:本文为博主原创文章,未经博主允许不得转载。

标签: android

热门推荐