I'm having the problem that for the following activity
public class MainActivity extends FragmentActivity implements UpdateActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabbed_main_activity); <-- error here
I get the follwoing error: Cannot resolve method setContentView(int)
What am I doing wrong?
PS: I also cross checked with http://developer.android.com/training/basics/fragments/fragment-ui.html