i\'m new to android. I\'m just trying to make one simple search functionality for my app. My app consists one ListView one EditText and one B
you may use Auto completer with your Editext and using that update your List Adapter and Also see
.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});