Error inflating class fragment

后端 未结 30 2806
长发绾君心
长发绾君心 2020-11-22 14:38

I get the Error

Unable to start activity ComponentInfo{de.androidbuch.activiti/de.androidbuch.activiti.task.Activity}: android.view.InflateException: Binar         


        
30条回答
  •  清歌不尽
    2020-11-22 14:58

    I had the same problem. The solution for me was the order of super.onCreate and setContentView within the FragmentActivity

    Following order works fine:

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

提交回复
热议问题