INNER CODE UNIT · Java

onNothingSelected

evrencoskun/TableView · app/src/main/java/com/evrencoskun/tableviewsample/MainFragment.java:249

        public void onNothingSelected(AdapterView<?> parent) {
            // Left empty intentionally.
        }
    };

    @NonNull
    private final TextWatcher mSearchTextWatcher = new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            filterTable(String.valueOf(s));
        }

        @Override
        public void afterTextChanged(Editable s) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…