android EditText 不自动弹出键盘的方法

来源:互联网 发布:淘宝直播间打字在哪 编辑:程序博客网 时间:2024/05/02 02:09


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



<activity    android:name=".Main"    android:label="@string/str_lable_device_loc"    android:windowSoftInputMode="adjustUnspecified|stateHidden"    android:screenOrientation="portrait">    <intent-filter>        <action android:name="..." />        <category android:name="android.intent.category.DEFAULT" />    </intent-filter></activity>
0 0
原创粉丝点击