An answer I read on another thread similar to this one that worked for me when I had this problem involved the layout xml.
Your logcat says "No view found for id 0x7f080011".
Open up the gen->package->R.java->id
and then look for id 0x7f080011
.
When I had this problem, this id belonged to a FrameLayout
in my activity_main.xml
file.
The FrameLayout did not have an ID (there was no statement android:id = "blablabla"
).
Make sure that all of your components in all of your layouts have IDs, particularly the component cited in the logcat.