|
|
@@ -78,7 +78,7 @@ public class SearchFragment extends FragmentBase<SearchPresenter> implements ISe
|
|
|
containerLatestTag = findViewById(R.id.container_latest_search_tag);
|
|
|
containerPopularTag = findViewById(R.id.container_popular_tag);
|
|
|
containerAutoCompletion = findViewById(R.id.container_auto_completion);
|
|
|
- recyclerViewLatestTag = findViewById(R.id.recycler_view_latest_tage);
|
|
|
+ recyclerViewLatestTag = findViewById(R.id.recycler_view_latest_tag);
|
|
|
recyclerViewPopularTag = findViewById(R.id.recycler_view_popular_tag);
|
|
|
recyclerViewAutoCompletion = findViewById(R.id.recycler_view_auto_completion);
|
|
|
|
|
|
@@ -86,6 +86,9 @@ public class SearchFragment extends FragmentBase<SearchPresenter> implements ISe
|
|
|
recyclerViewPopularTag.setLayoutManager(new LinearLayoutManager(getContext()));
|
|
|
recyclerViewAutoCompletion.setLayoutManager(new LinearLayoutManager(getContext()));
|
|
|
|
|
|
+ recyclerViewLatestTag.setNestedScrollingEnabled(false);
|
|
|
+ recyclerViewPopularTag.setNestedScrollingEnabled(false);
|
|
|
+
|
|
|
editSearch.addTextChangedListener(new TextWatcher() {
|
|
|
@Override
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) { }
|