How to display custom dialog on Android home screen ? First Create BroadcastReceiver()
Second Create CustomDialog As Activity
add to manifest
<activity android:name=".view.activity.CustomDialog"
        android:launchMode="singleInstance"
        android:screenOrientation="fullSensor"
        android:theme="@style/AlertDialogTheme"
        />
add Style AlertDialogTheme to style.xml
<style name="AlertDialogTheme" parent="Theme.MaterialComponents.Light.Dialog.Alert.Bridge">
</style>
Third Move by Intent to CustomDilog() Activity
 
     
    