How can I change dialog size for Android Facebook SDK? It's almost fullscreen which is OK for phone, but not OK for tablet. I would like to have different dialog size for tables and phones.
|
|
|
Why not instantiate it, or the pieces you want, in a Fragment? Here is the doc for Webview Fragments http://developer.android.com/reference/android/webkit/WebViewFragment.html Now Facebook does have some native Fragments integrated into their SDK, like the Picker Fragment: https://developers.facebook.com/docs/reference/android/3.0/PickerFragment This is what the webfragment would look like when you place it in your
You should be able to Fragmentize what you need for Tablets. Justin Breitfeller posted this code on stackoverflow: How to detect 7" Android tablet in code
I have used this in the past to make a different view for 7" and above screens in the past effectively. Then, you can call a different layout using different fragments or having fragments change size dynamically to effectively fit a screen based on type. It would be helpful if you gave us a bit more detail about what exactly you are trying to do. |
|||
|
|
|
If anyone cares - Facebook doesn't support this out of the box. You have to hack the code with some special cases, using calculations similar to childofthehorn's to check if the device is tablet or not, and then resize it manually. |
|||
|
|
|
In the Android Facebook 3.0 SDK make sure the LoginActivity Activity declaration in your manifest looks like this:
Setting the theme like this still starts the facebook activity as a fullscreen activity, but the entire activity is transparent so it looks like only a dialog appears. I guess this is more of a hack than anything else, but that's how Facebook does this in the Scrumptious sample project. |
|||
|
|