Android工作室EditText可点击

这个问题在这里已经有了答案:

  • 停止EditText在活动启动时获得焦点46个答案

  • 将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

    上一篇: Android studio EditText clickable

    下一篇: Android EditText cursor