码迷,mamicode.com
首页 > 移动开发 > 详细

Android自定义搜索框

时间:2014-10-10 11:48:34      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   http   color   io   os   ar   

搜索框里的虚拟键盘

xml如下

<EditText android:id="@+id/et_shopshow_search"
            android:layout_width="144dp"
            android:layout_height="40dp"
            android:singleLine="true"
            android:paddingLeft="8dp"
            android:paddingRight="8dp"
            android:drawablePadding="8dp"
            android:hint="@string/kuanhao"
            android:background="@color/white"
            android:drawableLeft="@drawable/searchcommon_icon"
            android:focusableInTouchMode="true"
            android:textSize="16sp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_weight="1"
            android:imeOptions="actionSearch" />

在代码里加入keydown时间的重写

final EditText et_search=(EditText)findViewById(R.id.et_shopshow_search);
        et_search.setOnEditorActionListener(new OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
                if(actionId ==EditorInfo.IME_ACTION_SEARCH){//这是搜索
                    // 先隐藏键盘
                    ((InputMethodManager) et_search.getContext().getSystemService(Context.INPUT_METHOD_SERVICE))
                    .hideSoftInputFromWindow(ShopShowActivity.this.getCurrentFocus().getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);
                     
                    //根据搜索框内容进行查询 
                    _styleCode=v.getText().toString().trim();
                    InitPageTask task = new InitPageTask(ShopShowActivity.this);
                    task.execute("");
                    return true;
                }
                return false;
            }
        });

 bubuko.com,布布扣

Android自定义搜索框

标签:des   android   style   blog   http   color   io   os   ar   

原文地址:http://www.cnblogs.com/jxyZ/p/4014935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!