java.lang.IllegalArgumentException: AppCompat does not support the current theme features

后端 未结 15 1095
你的背包
你的背包 2020-12-04 11:32

I tried to migrate a project from Eclipse to Android studio. Finally I am able to run it, but at a certain point I got this exception, and I found nothing in google about th

15条回答
  •  [愿得一人]
    2020-12-04 12:33

    Make sure that

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    

    are at the top of everything this works for me....good luck

提交回复
热议问题