Android Open Activity in Dialog Mode

 Change Your Menifest
 
 
 
<activity android:name=".startup.AddNumber"    android:theme="@style/Theme.AppCompat.DayNight.Dialog"    android:configChanges="orientation|screenSize|keyboardHidden">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

Comments