how to create dialogs like apprequest dialog from hackbook for Android

152 Views Asked by At

I am trying to create a customized dialog with a lot of resources like apprequest dialog from hackbook for android.

there is nothing similar @ http://developer.android.com/guide/topics/ui/dialogs.html. Someone knows how to do it?

Tnx in advance

enter image description here

1

There are 1 best solutions below

1
On

To create a customized dialog like the one we have in our SDK, its simply a custom class extending Dialog, which you can read up on in the Android documentation.

Facebook's Android SDK is open sourced on github, and this file shows you how we generate the custom dialog for our purposes. If you dig through the source code you see that we're actually loading a WebView for the content inside the dialog, but you can always create your own native layout and set it with setContentView(). Let me know if that helps!

-Jesse