android将软键盘显示为搜索键

时间:2014-05-28 00:00:52   收藏:0   阅读:442

方法很简单,首先要在EditText的属性加入 android:imeOptions="actionSearch" ,这个属性的作用是启用软键盘时将回车键设置成搜索键, android:singleLine="true"这个就是为了单行输入的大家都知道。

然后就是监听搜索按钮点击事件了,代码如下:

bubuko.com,布布扣
EditText test=(EditText) findViewById(R.id.test);
        test.setOnEditorActionListener(new OnEditorActionListener() {
            
            @Override
            public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
                // TODO Auto-generated method stub
                Toast.makeText(XListViewActivity.this, "test", Toast.LENGTH_SHORT).show();
                return false;
            }
        });
bubuko.com,布布扣

代码很简单,记录下来省得以后忘了

android将软键盘显示为搜索键,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!