1、Android 如何让EditText不自动获取焦点
解决方案:找一个EditText的父级控件把EditText默认的行为截断了!设置
android:focusable="true"
android:focusableInTouchMode="true">
示例:
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true"> <EditText android:layout_width="match_parent" android:layout_height="wrap_content"/></LinearLayout>
时间: 2024-10-05 05:57:52