Android工作室EditText可点击
这个问题在这里已经有了答案:
将android:focusableInTouchMode =“true”设置为您的根布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/blue_dark"
android:focusableInTouchMode="true"
android:orientation="vertical">
.
.
.
</RelativeLayout>
只需在你的清单文件中写入
<activity
android:name=".YourActivity"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
链接地址: http://www.djcxy.com/p/24179.html