I am trying to implement the Facebook SDK (3.0 beta) in an Android application that depends on ActionBarSherlock, but I do not understand how I cannot extend both SherlockFragmentActivity and FacebookActivity .
An example application in the Facebook SDK:
public class MainActivity extends FacebookActivity { private static final int SPLASH = 0; private static final int SELECTION = 1;
And FacebookActivity is as follows:
public class FacebookActivity extends FragmentActivity {
Any ideas on how to do this?
source share