I'm trying to implement the Facebook SDK (3.0 beta) in an Android app that relies on ActionBarSherlock but I don't understand how since I can't extend both SherlockFragmentActivity and FacebookActivity.
The sample app in the Facebook SDK has:
public class MainActivity extends FacebookActivity {
private static final int SPLASH = 0;
private static final int SELECTION = 1;
And the FacebookActivity looks like:
public class FacebookActivity extends FragmentActivity {
Any ideas on how to do this?