国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android EditText實現(xiàn)關(guān)鍵詞批量搜索示例

2019-12-12 03:33:04
字體:
供稿:網(wǎng)友

今天在項目中用到了用到了一種特殊的EditText,當(dāng)用戶在EditText中輸入內(nèi)容,點擊搜索按鈕的時候,輸入的內(nèi)容能夠高亮,然后添加到輸入的容器中。刪除的時候,能夠?qū)⑷萜髦械年P(guān)鍵詞逐一刪除。附上代碼:

SearchEditText.java

package com.jackie.searchresultedittext;  import android.content.Context; import android.graphics.Color; import android.util.AttributeSet; import android.view.Gravity; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.View; import android.view.inputmethod.EditorInfo; import android.widget.EditText; import android.widget.LinearLayout; import android.widget.RelativeLayout; import android.widget.TextView;  /**  * Created by Jackie on 2017/2/21.  * 用于搜索的EditText  */ public class SearchEditText extends RelativeLayout {   private Context mContext;   private LayoutInflater mInflater;   private View mView;   private LinearLayout mContainer;   private EditText mEditText = null;    public SearchEditText(Context context) {     this(context, null);   }    public SearchEditText(Context context, AttributeSet attrs) {     this(context, attrs, 0);   }    public SearchEditText(Context context, AttributeSet attrs, int defStyleAttr) {     super(context, attrs, defStyleAttr);     init(context);   }      private OnSearchChangeListener mSearchChangeListener;    public interface OnSearchChangeListener {     void searchChange(String s);     void removeView(int position);   }    public void setOnSearchChangeListener(OnSearchChangeListener searchChangeListener) {     mSearchChangeListener = searchChangeListener;   }    private void init(Context context) {     mContext = context;     mInflater = LayoutInflater.from(mContext);     mView = mInflater.inflate(R.layout.search_edittext_layout, null);     LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);     params.leftMargin = 15;     params.rightMargin = 15;     addView(mView, params);          mContainer = (LinearLayout) mView.findViewById(R.id.layout);     mEditText = (EditText) mView.findViewById(R.id.edittext);     mEditText.setOnKeyListener(new OnKeyListener() {       @Override       public boolean onKey(View v, int keyCode, KeyEvent event) {         if (keyCode == KeyEvent.KEYCODE_DEL) {           if (isNotFastClick()) {             if (mEditText.getText().toString().length() > 0) {               String str = mEditText.getText().toString();               str = str.substring(0, str.length() - 1);               mEditText.setText(str);               mEditText.setSelection(str.length());             } else {               if (mContainer.getChildCount() > 0) {                 if (mSearchChangeListener != null) {                   mSearchChangeListener.removeView(mContainer.getChildCount() - 1);                 }                  mContainer.removeViewAt(mContainer.getChildCount() - 1);               }             }           }         }          return true;       }     });      mEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {       @Override       public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {         if (actionId == EditorInfo.IME_ACTION_SEARCH) {            if (mEditText.getText().toString().trim().equals("")) {             return true;           }            TextView textView = new TextView(mContext);           textView.setText(mEditText.getText().toString().trim());           textView.setTextSize(14);           textView.setTextColor(Color.parseColor("#dfe0e0"));           textView.setPadding(10, 0, 10, 0);           textView.setBackgroundResource(R.drawable.shape_edittext_round_bg);           textView.setGravity(Gravity.CENTER);           LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);           params.leftMargin = 10;           textView.setLayoutParams(params);            if (mSearchChangeListener != null) {             mSearchChangeListener.searchChange(mEditText.getText().toString().trim());           }            mEditText.setText("");           mContainer.addView(textView);         }          return true;       }     });   }    public EditText getEditText() {     return mEditText;   }   public LinearLayout getContainer() {     return mContainer;   }    long lastClickTime = 0;    public boolean isNotFastClick() {     long time = System.currentTimeMillis();     if (time - lastClickTime >= 300) {       lastClickTime = time;       return true;     } else {       return false;     }   } } 

search_edittext_layout.xml

<?xml version="1.0" encoding="utf-8"?> <HorizontalScrollView   xmlns:android="http://schemas.android.com/apk/res/android"   android:layout_width="match_parent"   android:layout_height="match_parent"   android:scrollbars="none"   android:fillViewport="true"   >   <LinearLayout     android:layout_width="match_parent"     android:layout_height="33dp"     android:orientation="horizontal">      <LinearLayout       android:id="@+id/layout"       android:layout_width="wrap_content"       android:layout_height="match_parent"       android:orientation="horizontal"       android:gravity="center_vertical"       android:layout_gravity="center_vertical" />      <EditText       android:gravity="center_vertical"       android:layout_gravity="center_vertical"       android:id="@+id/edittext"       android:layout_width="wrap_content"       android:layout_height="match_parent"       android:background="@null"       android:textSize="16dp"       android:textColor="#dfe0e0"       android:layout_weight="1"       android:minWidth="50dp"       android:imeOptions="actionSearch"       android:singleLine="true"       android:layout_marginLeft="10dp"/>   </LinearLayout> </HorizontalScrollView> 

shape_edittext_round_bg.xml

<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"   android:shape="rectangle">   <solid android:color="#666666" />   <corners android:radius="10dp"/> </shape> 

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 祁门县| 廊坊市| 正阳县| 紫阳县| 胶州市| 辽阳市| 玉树县| 仁布县| 资阳市| 垦利县| 类乌齐县| 云和县| 宜兰市| 绍兴县| 万山特区| 焉耆| 台东市| 大石桥市| 花垣县| 喜德县| 台北市| 苗栗县| 英山县| 石台县| 建昌县| 焦作市| 屏东县| 西乌珠穆沁旗| 麟游县| 嘉兴市| 宝兴县| 鄯善县| 怀远县| 阜康市| 阿巴嘎旗| 莆田市| 游戏| 巫溪县| 广丰县| 锡林郭勒盟| 黑山县|