Skip to content

Commit

Permalink
fix6 for search to include all the meets
Browse files Browse the repository at this point in the history
  • Loading branch information
pavly-gerges committed Jul 2, 2021
1 parent b1f669e commit 2162ec9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ public String[] search(String[] searchList, String[] searchKeyWords, ActionInjec
if(injector != null){
injector.execute(getChildUiStateByIndex(j), j, resultList[0][i]);
}
break;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void onClick(View v) {
Toast.makeText(uiPager.getContext(), "Search Button Clicked", Toast.LENGTH_LONG).show();
try {
uiPager.removeAllViews();
uiPager.search(sortedList, new String[]{"Revert Search", "PAvlY", "Thomas"}, (uiState, position, currentItem) -> {
uiPager.search(sortedList, new String[]{"Search", "PAvlY", "Thomas"}, (uiState, position, currentItem) -> {
uiPager.addView(uiState);
uiState.setBackgroundColor(Color.MAGENTA);
if(uiState.getId() == 'P'){
Expand Down

0 comments on commit 2162ec9

Please sign in to comment.