I'm trying to implement a Search View in a List View of my project. I saw some tutorials but I could not implement any because there was always an error here and there because of the peculiarities of each list and code. So I come to the best ask if anyone can help me. I ask you to be the most specific because I do not have much experience. Thank you.
........
public class ListClientes extends AppCompatActivity implements AdapterView.OnItemLongClickListener, AdapterView.OnItemClickListener {
ListView lista;
ArrayList<Cliente> clientes;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.list_clientes);
lista = (ListView) findViewById(R.id.listview);
lista.setOnItemLongClickListener(this);
lista.setOnItemClickListener(this);
atualizar(null);
}
public void atualizar(View view) {
ClienteDao cliDao = new ClienteDao();
clientes = cliDao.getListagem();
lista.setAdapter(new ClienteAdapter(getBaseContext(), clientes));
}
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
Intent cadClienteIntent = new Intent(this, CadCliente.class);
cadClienteIntent.putExtra("Cliente", clientes.get(position));
startActivity(cadClienteIntent);
return true;
}
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Intent cadPedidoIntent = new Intent(this, CadPedido.class);
cadPedidoIntent.putExtra("Cliente", clientes.get(position));
startActivity(cadPedidoIntent);
}
}
My client adapter
.......
public class ClienteAdapter extends BaseAdapter {
private Context context;
private List<Cliente> clientes;
public ClienteAdapter(Context context, List<Cliente> clientes) {
this.context = context;
this.clientes = clientes;
}
public int getCount() {
return clientes.size();
}
public Object getItem(int position) {
return clientes.get(position);
}
public long getItemId(int position) {
return clientes.get(position).getId();
}
public View getView(int position, View convertView, ViewGroup parent) {
Cliente cliente = clientes.get(position);
LayoutInflater layout = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layout.inflate(R.layout.linhacli, null);
Log.i("AULA", "Montou:" + cliente.getNome());
Log.e("ERRO", "Valor da variavel estava nullo!");
ImageView imgImageView = (ImageView) view.findViewById(R.id.imgCliente);
imgImageView.setImageBitmap(BitmapFactory.decodeFile(cliente.getPathImagem()));
TextView edNome = (TextView) view.findViewById(R.id.textView1);
edNome.setText(cliente.getNome());
TextView lblTelefone = (TextView) view.findViewById(R.id.textView2);
lblTelefone.setText(cliente.getTelefone());
lblTelefone.setText(Mask.addMask(cliente.getTelefone(), "(##)####-####"));
return view;
}
}