Show activity edges rounded corner while drawer open
How can I archive to display rounded corner activity while drawer open? I tried with Root View background set with rounded corner drawable but it's not working!
Did you find a way to do that? @sam4444
@Moseqi @sam4444 Has either of you found solution to do that?
someone found any solution? i need corner and shadow.
did you find a solution?
we are waiting for solution?
@yarolegovich
still waiting
try wraping with CardView, and set cardCornerRadius as you want
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00000000"
app:cardCornerRadius="25dp"
app:cardElevation="0dp">
<include
layout="@layout/main_content"/>
</androidx.cardview.widget.CardView>
hello, I don’t quite understand, can I have an example project please?