I am working on a project wherein I want to use BottomSheetDialog
in different activities. But for different activities I want the Dialog to have diffrent background drawable. I have set the background drawable in themes.xml
but that makes the drawable to be applicable for BottomSheetDialog
for the entire app, i.e, it gets applied successfully but it is constant for all activities. What I want is for diffrent activites it must have different background drawable.
This is what my themes.xml
looks like:
<resources xmlns:tools="http://schemas.android.com/tools">
<style>
<!-- Base application theme. -->
...
...
<!-- Customize your theme here. -->
<item name="bottomSheetDialogTheme">@style/AppBottomSheetDialogTheme</item>
</style>
<style name="AppBottomSheetDialogTheme"
parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/AppModalStyle</item>
</style>
<style name="AppModalStyle"
parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/top_rounded_corners</item> <!-- I want to change the backgroundDrawable here. -->
</style>
</resources>
Is there a way I can change drawable depending on the activity I am on. I thought of using AndroidManifest.xml
but I am not sure how can I achieve this.
Any help is appreciated. Thank You.