1

1.Every new project created appcompat v7 project included in project explorer.

2.I cannot create setContentView(R.layout.main);

3.If I create this error is shown.

Raghunandan
  • 132,755
  • 26
  • 225
  • 256

1 Answers1

1

Don't let Eclipse create Activity. Do it yourself. Untick "Create Activity" option when creating new project.

Slim C.
  • 1,119
  • 4
  • 25
  • 49
  • What you need to do is: Create Project>Untick "Create Activity" Feature, then create package in Src folder. Then just create activity in that package. That is how I did it and it worked for me. – Slim C. May 21 '14 at 10:33