第一次没有关注edittext

这个问题在这里已经有了答案:

  • 停止EditText在活动启动时获得焦点46个答案

  • 设置父布局的属性

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

    喜欢这个:

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@color/black"
        android:gravity="center_horizontal"
    
        android:focusable="true"  
        android:focusableInTouchMode="true">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/logo"
            android:background="@drawable/dictionary_logo"/>
    
        <RelativeLayout 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/searchbar_bg"
            android:gravity="center_vertical">
    
            <EditText
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:id="@+id/et_search"
               android:background="@null"
               android:hint="Search"
               android:singleLine="true"/>
    
        </RelativeLayout>
    
    </LinearLayout>
    
    链接地址: http://www.djcxy.com/p/24167.html

    上一篇: Not focus edittext the first time

    下一篇: Not auto select an EditText field