重复值列表视图 - Android

Duplicate values listView - Android

我正在使用 Android Studio 开发一个 Android 应用程序,我遇到了下一个问题:这是我没有搜索任何内容的屏幕。

Screen

我第一次搜索时效果很好,但当我再次搜索时它重复了我的值。

First Search

Second Search - duplicate results

这是我调用主机并使用适配器时的代码:

cliente.post(URL, new AsyncHttpResponseHandler() {


    @Override
    public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
        if (statusCode == 200) {


            try {
                JSONArray jsonArray = new JSONArray(new String(responseBody));
                for (int i = 0; i < jsonArray.length(); i++) {
                    nombreRepuestoList.add(jsonArray.getJSONObject(i).getString("DESCRIPCION"));
                    referenciaRepuestoList.add(jsonArray.getJSONObject(i).getString("REFERENCIA_REPUESTO"));
                }


                    ArrayAdapter adaptermaquina = new ArrayAdapter(getContext(), android.R.layout.simple_list_item_2, android.R.id.text1, nombreMaquinaList) {
                        @Override
                        public View getView(int position, View convertView, ViewGroup parent) {
                            View view = super.getView(position, convertView, parent);
                            TextView text1 = (TextView) view.findViewById(android.R.id.text1);
                            TextView text2 = (TextView) view.findViewById(android.R.id.text2);

                            text1.setText(nombreMaquinaList.get(position));
                            text2.setText(referenciaMaquinaList.get(position));
                            return view;
                        }
                    };
                    adaptermaquina.notifyDataSetChanged();
                    listaResultado.setAdapter(adaptermaquina);

                    } catch (JSONException e) {
                        e.printStackTrace();
                    }

我需要一些帮助。

我尝试使用一个空的适配器,但它不起作用,使用 listaResultado.clear() 也不起作用。

不需要清除数据适配器只需清除列表值

 nombreRepuestoList.clear();
 referenciaRepuestoList.clear(); 

在你的代码中

    if (statusCode == 200) {
     nombreRepuestoList.clear();//1st 
     referenciaRepuestoList.clear();//2nd 
        try {
            JSONArray jsonArray = new JSONArray(new String(responseBody));
            for (int i = 0; i < jsonArray.length(); i++) {
                nombreRepuestoList.add(jsonArray.getJSONObject(i).getString("DESCRIPCION"));
                referenciaRepuestoList.add(jsonArray.getJSONObject(i).getString("REFERENCIA_REPUESTO"));
            } 

希望对你有用