Onscrolllistener does not work Onitemclicklistener

Asked

Viewed 80 times

0

Onitemclicklistener does not work when clicking on a survey client.

Hello. I have a screen that is a Listactivity, when I open it, it brings customers perfectly from the bank, running the Onscrolllistener and also Onitemclicklistener.

However on the same screen there is an edittext for search; so when I do the search, it brings the normal client, the problem is that Onitemclicklistener does not work when clicking on a search client.

public class Lista_Clientes extends ListActivity implements OnClickListener, OnScrollListener {
...
@Override
    public void onCreate(Bundle savedInstanceState) {
    ...
    preencherclientes
    getListView().setOnScrollListener(this);
    }

//Esse método está funcionando normal ao clicar em cliente que não tiver sido pesquisado
//No entanto ao pesquisar ele não funciona mais.
 @Override
    protected void onListItemClick(ListView l,View v,int position,long id){

        super.onListItemClick(l, v, position, id);                

        Cliente cliente = (Cliente) this.getListAdapter().getItem(position);

        if (RetornaResultado) { 
            adicionaResultado(String.valueOf(cliente.getIDcli()));
        } else {
            Intent i = new Intent(this, Act_ConsultaCliente.class);
            Act_ConsultaCliente.mCodCliente = String.valueOf(cliente.getIDcli());
            startActivity(i);
        }        

    }

public void preencherclientes(int mais, boolean usaFiltro) {

        String limite = " LIMIT 20 OFFSET "+mais+"";
        //String sAux = "";
        if (!(mSpoApp.getManager().getConfiguracaoAparelhoVendedor(1) == null))
            sAux = " and _id in (select idcli from clienterotavendedor where idrot = (select rota_id from configuracaoaparelhovendedor))";

        if (!usaFiltro) { 
            listCliente.addAll(mSpoApp
                    .getManager()
                    .getClienteDao()
                    .getAllbyClause("1=1 "+sAux+" order by nome "+limite,null,null, null,null));    
        } else {
            listCliente = mSpoApp.getManager().getClienteDao().getAllbyClause("1 = 1 " + sAux + 
                            " and nome like '%" + mEdtFiltro.getText().toString() + "%' " +
                            "or (fantasia like '%" + mEdtFiltro.getText().toString()+"%') " +
                            "or (cpf like '%" + mEdtFiltro.getText().toString()+"%') " +
                            "or (cnpj like '%" + mEdtFiltro.getText().toString()+"%') " +
                            "or (_id = '" + mEdtFiltro.getText().toString() + "') order by nome " + limite,null,null, null,null);            
        }


        mClientesAdapter = new Adapter_ListaClientes(Lista_Clientes.this, listCliente);


        setListAdapter(mClientesAdapter);

    }   

    public void adicionarclientes(int mais) {
        String limite = " LIMIT 20 OFFSET "+mais+"";
        String sAux = "";
        if (!(mSpoApp.getManager().getConfiguracaoAparelhoVendedor(1) == null))
            sAux = " and _id in (select idcli from clienterotavendedor where idrot = (select rota_id from configuracaoaparelhovendedor))";

        listCliente.addAll(mSpoApp
                .getManager()
                .getClienteDao()
                .getAllbyClause("1=1 "+sAux+" order by nome "+limite,null,null, null,null));    
        mClientesAdapter.notifyDataSetChanged();

    }

@Override
    public void onScroll(AbsListView view, int primeiroItemVisivel,
            int quantidadeDeItensVisiveis, int totalDeItensNoAdapter) {
        if(primeiroItemVisivel + quantidadeDeItensVisiveis >= totalDeItensNoAdapter - 0) {

                adicionarclientes(totalDeItensNoAdapter);

        }
    }

@Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
        //

    }

  • The method is not executed or is executed incorrectly?

  • It does not run when the search is done, however if I click and drag it shows all other client and opens the desired client.

1 answer

0


I managed to solve my problem. The problem was, that when I did the search it tried to add again in the list, because the list soon reached the end because the last item in the list was visible

	@Override
	public void onScroll(AbsListView view, int primeiroItemVisivel,
			int quantidadeDeItensVisiveis, int totalDeItensNoAdapter) {
		if(primeiroItemVisivel + quantidadeDeItensVisiveis >= totalDeItensNoAdapter - 0) {
			/**
			 * Aqui faço o tratamento para aumetar a lista
			 * Como preciso adicionar na lista somente enquanto tiver dados no banco
			 * fiz o if para verificar se ja chegou no final
			 * se chegar não adicione mais na lista
			 */
			
			//Se total de itens no adapter não for maior ou igual a 20, não faça nada 
			if (totalDeItensNoAdapter >=20) {
				
			
				//Se total for diferente do total de itens que tem no adapter
				//Contar recebe o valor total de itens no adapter
				//Quando total for igual o número de itens no adapter, então total recebe um amais
				if (total != totalDeItensNoAdapter) {
					total = totalDeItensNoAdapter;
				} else {
					total++;	
				}
				
				//Se a soma de primeito intem visível + quantidade de itens visível for igual 
				if ((primeiroItemVisivel + quantidadeDeItensVisiveis) == totalDeItensNoAdapter) {
					//Enquanto total não for maior que total de itens no adapter, adicione novos clientes
					if (!(total>totalDeItensNoAdapter)) {
						adicionarclientes(totalDeItensNoAdapter);
					}
				}
			}
		}
	}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.