当前位置:首页 » 安卓系统 » 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将会没有光标。

热点内容
我的世界112服务器存档 发布:2025-07-02 11:25:02 浏览:946
php类函数调用 发布:2025-07-02 11:24:27 浏览:24
redhat存储 发布:2025-07-02 11:12:50 浏览:585
优酷不能用流量缓存 发布:2025-07-02 11:10:46 浏览:940
彩虹岛小草怎么设置脚本 发布:2025-07-02 11:10:33 浏览:921
越压缩越封闭 发布:2025-07-02 11:09:10 浏览:90
jre下载linux 发布:2025-07-02 11:07:43 浏览:219
安卓手机换行如何操作 发布:2025-07-02 11:03:12 浏览:547
玩客云服务器搭建 发布:2025-07-02 10:59:58 浏览:357
假笑数据库 发布:2025-07-02 10:59:09 浏览:850