当前位置:首页 » 安卓系统 » android长按复制

android长按复制

发布时间: 2024-10-27 14:03:32

A. Android的EditText长按只显示上面的复制粘贴菜单,不要弹出下面的输入法键盘怎么做

4.0以上的API禁止EditText弹出键盘需要这样写:

4.0的是setShowSoftInputOnFocus,4.2的是setSoftInputOnFocus。

java">EditTexteditText;
//editText的实例化我不写了
InputMethodManagerimm=(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(e1.getWindowToken(),0);
try{
Class<EditText>cls=EditText.class;
setSoftInputShownOnFocus=cls.getMethod("setShowSoftInputOnFocus",boolean.class);
setSoftInputShownOnFocus.setAccessible(true);
setSoftInputShownOnFocus.invoke(editText,false);
}catch(Exceptione){
e.printStackTrace();
}

并且还要在配置文件里面加上android:windowSoftInputMode="stateHidden"

4.0以下的可用editText.setInputType(InputType.TYPE_NULL);

或者直接在XML进行属性设置。

如果对4.0以上系统的操作这句代码,EditText将会没有光标。

热点内容
鸟保护脚本 发布:2025-09-19 15:25:46 浏览:48
家庭旧电脑改服务器实用吗 发布:2025-09-19 15:04:14 浏览:154
java查询sql 发布:2025-09-19 14:55:30 浏览:833
surfacelinux 发布:2025-09-19 14:55:30 浏览:310
hix源码 发布:2025-09-19 14:35:21 浏览:63
空调压缩机格力 发布:2025-09-19 14:32:10 浏览:560
服务器地址号段 发布:2025-09-19 14:21:32 浏览:712
安卓系统注册的游戏怎么转到苹果 发布:2025-09-19 14:18:50 浏览:459
无限宝缓存 发布:2025-09-19 13:35:59 浏览:92
linuxzip分卷解压 发布:2025-09-19 13:29:24 浏览:337