Панель инструментов в коде: //code to make the toolbar edges round MaterialToolbar searchToolbar = findViewById(R.id.searchToolbar); MaterialShapeDrawable searchbarBackground = (MaterialShapeDrawable) searchToolbar.getBackground(); searchbarBackground.setShapeAppearanceModel( searchbarBackground.getShapeAppearanceModel() .toBuilder() .setBottomRightCorner(CornerFamily.ROUNDED,100) .setBottomLeftCorner(CornerFamily.ROUNDED,100) .build() ); //code to add search function SearchView searchView = findViewById(R.id.searchView); searchView.setImeOptions(EditorInfo.IME_ACTION_DONE);//so that button on keyboard is a check searchView.setQueryHint("Search..."); searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { @Override public boolean onQueryTextSubmit(String query) { return false; } @Override public boolean onQueryTextChange(String newText) { ItemAdapter.getFilter().filter(newText); return false; } });
Панель инструментов в коде:
//code to make the toolbar edges round MaterialToolbar searchToolbar = findViewById(R.id.searchToolbar); MaterialShapeDrawable searchbarBackground = (MaterialShapeDrawable) searchToolbar.getBackground(); searchbarBackground.setShapeAppearanceModel( searchbarBackground.getShapeAppearanceModel() .toBuilder() .setBottomRightCorner(CornerFamily.ROUNDED,100) .setBottomLeftCorner(CornerFamily.ROUNDED,100) .build() ); //code to add search function SearchView searchView = findViewById(R.id.searchView); searchView.setImeOptions(EditorInfo.IME_ACTION_DONE);//so that button on keyboard is a check searchView.setQueryHint("Search..."); searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { @Override public boolean onQueryTextSubmit(String query) { return false; } @Override public boolean onQueryTextChange(String newText) { ItemAdapter.getFilter().filter(newText); return false; } });
Это тень AppBarLayout. Используйте:
AppBarLayout
<com.google.android.material.appbar.AppBarLayout app:elevation="0dp" android:background="@android:color/transparent"
введите описание изображения здесь