温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android如何实现搜索框

发布时间:2021-04-16 13:37:45 来源:亿速云 阅读:232 作者:小新 栏目:移动开发

这篇文章主要介绍了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>

感谢你能够认真阅读完这篇文章,希望小编分享的“Android如何实现搜索框”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI