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
2010-08-16 11:03:36
hi martin how can i display android activity as dialog
evan
2010-08-16 14:37:00
just add the following theme-entry to your activity description in the androidmanifest.xml file:<activity android:theme="@android:style/Theme.Dialog">
Martin
2010-08-16 15:14:07