admin
- 管理员
- 536
- 5896
- 2018-07-20
|
1#
t
T
发表于 2018-08-02 17:03
|只看楼主
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="45dp"
- android:layout_margin="5dp"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:background="#fff">
- <SearchView
- android:id="@+id/sv_khwh"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:iconifiedByDefault="false"
- android:windowSoftInputMode = "stateHidden"
- android:queryHint="请输入关键字" />
- </RelativeLayout>
复制代码- 在需要去掉的父容器添加
- android:focusable="true"
- android:focusableInTouchMode="true"
复制代码
|