editText不自动获取焦点

2021-03-19  本文已影响0人  码圣

在editText的父控件中加入这两个属性

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

比如

<LinearLayout
            android:focusable="true"
            android:focusableInTouchMode="true"

            android:gravity="center_vertical"
            android:layout_marginTop="26dp"

            android:background="@drawable/shape_search_bg"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <ImageView
                android:layout_marginTop="8dp"
                android:layout_marginBottom="8dp"
                android:layout_marginLeft="13dp"
                android:layout_width="21dp"
                android:layout_height="21dp"
                android:src="@drawable/search">

            </ImageView>
            <EditText
                android:id="@+id/etSearch"
                android:background="@null"
                android:layout_marginLeft="11dp"
                android:textSize="15sp"
                android:textColorHint="#737373"
                android:layout_width="match_parent"
                android:layout_height="30dp"
                android:hint="搜索你喜欢的视频">

            </EditText>
        </LinearLayout>
上一篇 下一篇

猜你喜欢

热点阅读