首页 > 系统 > Android > 正文

android 中关于输入法的一些小tips

2019-11-06 09:44:30
字体:
来源:转载
供稿:网友

1.进有edittext控件的activity自动弹出输入法

在清单文件对应的activity中加入

	android:windowSoftInputMode="stateAlwaysVisible" 
   就行了
2.隐藏输入法
((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(EditAddressActivity.this.getCurrentFocus().getWindowToken(),0);


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表