美文网首页
框架整理系列十六(默认登陆界面不弹出软键盘)

框架整理系列十六(默认登陆界面不弹出软键盘)

作者: I_Gisvity | 来源:发表于2017-05-26 15:57 被阅读0次

让包含EditText控件的容器获得焦点

    android:focusableInTouchMode="true"
    <requestFocus/>

例如

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_login"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusableInTouchMode="true"
    tools:context=".LoginActivity">
    <requestFocus/>


相关文章

网友评论

      本文标题:框架整理系列十六(默认登陆界面不弹出软键盘)

      本文链接:https://www.haomeiwen.com/subject/kjdxfxtx.html