tags:

views:

30

answers:

1

how to create an android popup window with webpage in it.

A: 

you could create a new activity which is displayed as dialog <activity android:theme="@android:style/Theme.Dialog"> and put a WebView in it

Martin
hi martin how can i display android activity as dialog
evan
just add the following theme-entry to your activity description in the androidmanifest.xml file:<activity android:theme="@android:style/Theme.Dialog">
Martin