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
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
Copyright © 2021 Jogjafile Inc.
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 withsetContentView()
. Let me know if that helps!-Jesse