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

2017-05-26  本文已影响0人  I_Gisvity

让包含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/>


上一篇 下一篇

猜你喜欢

热点阅读