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

首頁 > 系統 > Android > 正文

Android實現簡單實用的搜索框

2019-10-22 18:24:27
字體:
來源:轉載
供稿:網友

本文實例為大家分享了Android實現搜索框展示的具體代碼,供大家參考,具體內容如下

展示效果

Android,搜索框

代碼區

SouActivity

public class SouActivity extends AppCompatActivity implements TextWatcher{  @BindView(R.id.app_sou)  EditText appSou;  @BindView(R.id.app_sou_list)  ListView appSouList;  @BindView(R.id.activity_sou)  RelativeLayout activitySou;  private String mUrl = "http://120.27.23.105/product/searchProducts";  private List<MySouFr.DataBean> sdata;  private MyBase myBase;  private String asou;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_sou);    ButterKnife.bind(this);    sdata=new ArrayList<MySouFr.DataBean>();    appSou.addTextChangedListener(this);    appSou.setOnFocusChangeListener(new View.OnFocusChangeListener() {      @Override      public void onFocusChange(View view, boolean b) {        if(b)        {          appSou.setText("");        }      }    });  }  @Override  public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {  }  @Override  public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {    //獲取輸入框的值    asou = appSou.getText().toString().trim();      OkHttp3Utils.getInstance().doGet(mUrl + "?keywords=" + asou + "&page=1", new GsonObjectCallback<MySouFr>() {        @Override        public void onUi(final MySouFr mySouFr) {          /*適配器*/          if (asou !=null&&!asou.equals("")) {            sdata = mySouFr.getData();            myBase = new MyBase();            appSouList.setAdapter(myBase);            appSouList.setOnItemClickListener(new AdapterView.OnItemClickListener() {              @Override              public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {                Intent intent = new Intent(SouActivity.this, Sou_item_Activity.class);                intent.putExtra("url",mySouFr.getData().get(i).getDetailUrl());                startActivity(intent);//                Toast.makeText(SouActivity.this, "假裝你已經點擊了哦!", Toast.LENGTH_SHORT).show();              }            });          } else if(myBase!=null) {            sdata.clear();            myBase.notifyDataSetChanged();          }        }        @Override        public void onFailed(Call call, IOException e) {        }      });    }  @Override  public void afterTextChanged(Editable editable) {  }  class MyBase extends BaseAdapter{    @Override    public int getCount() {      return sdata.size();    }    @Override    public Object getItem(int i) {      return sdata.get(i);    }    @Override    public long getItemId(int i) {      return i;    }    @Override    public View getView(int i, View view, ViewGroup viewGroup) {      Vh vh=null;      if(view==null){        view=View.inflate(SouActivity.this,R.layout.item_sou,null);        vh=new Vh();        vh.tv1=(TextView) view.findViewById(R.id.item_sou_text1);        view.setTag(vh);      }else{        vh = (Vh) view.getTag();      }      Log.d("main",sdata.get(i).getTitle());      vh.tv1.setText(sdata.get(i).getTitle());      return view;    }  }  class Vh{    TextView tv1;  }}

activity_sou

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/activity_sou"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context="sizu.nsg.SouActivity">  <EditText    android:id="@+id/app_sou"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:hint="Searching..."    />  <ListView    android:id="@+id/app_sou_list"    android:layout_below="@id/app_sou"    android:layout_width="match_parent"    android:layout_height="match_parent">  </ListView></RelativeLayout>


item_sou

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent">  <TextView    android:id="@+id/item_sou_text1"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:text="123"    /></RelativeLayout>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 廉江市| 马边| 文安县| 磴口县| 宾阳县| 库尔勒市| 霍城县| 肇庆市| 双流县| 陇南市| 彰化市| 太和县| 西峡县| 景德镇市| 谷城县| 象州县| 皋兰县| 深水埗区| 塔城市| 牙克石市| 岑溪市| 广安市| 西乌珠穆沁旗| 墨玉县| 衡阳市| 平顺县| 涿州市| 化州市| 曲阜市| 从江县| 保山市| 贵南县| 钟祥市| 枣庄市| 古交市| 临漳县| 夏津县| 洱源县| 喀喇沁旗| 临泉县| 湖州市|