Android

Get a Dialog style activity window to fill the screen-Android

Posted on

Applying Dialog Style to Activity Generally when we set Activity theme as dialog style, <activity android:label=”@string/app_name” android:name=”.DialogActivity” android:theme=”@android:style/Theme.Dialog” /> <activity/> its just display at the center of the screen, with specific width and height set in the XML Layout file or as per the Content. as shown below. At times you may want to display […]