EditText默认不弹出键盘,不获取焦点

在AndroidMainfest.xml中选择哪个activity,设置windowSoftInputMode属性为adjustPan|stateHidden.

                android:name=".more.personinfo.ChangeInfoActivity"
            android:screenOrientation="portrait"
            android:theme="@style/horizontal_slide"
            android:windowSoftInputMode="adjustPan|stateHidden" />

你可能感兴趣的:(源生控件)