在父控件处添加
android:focusable="true"
android:focusableInTouchMode="true"
例如
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:focusable="true"
android:focusableInTouchMode="true">
<EditText android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:ems="15"/>
</LinearLayout>