I am getting this exception in the designer:
Exception raised during rendering: No tab known for tag null
I have the same EXACT code as this guy - Android FragmentTabHost : No tab known for tag null
his only answer was "use an older deprecated class" - TabHost instead of FragmentTabHost which is the one that I understood you need to use instead of...
I am a beginner to Android and to Java, but i've been a programmer for many years in .NET, and i find it really hard to find good solutions to very basic problems that came from apparently the only 3 tutorials for fragments out there (just like the one stated above)
So basically here are my questions so far:
From what i understood so far, the only way to actually make a menu to your Android application is to make it a single Activity app with fragments, if this is true, how should i keep track of my fragments if FragmentTagHost is not fully working yet? I found references for ActionBarSherlock - his latest version is using a lot of deprecated classes too
What are the best practices with using a single activity + fragments, and where can i find good helpful examples to get me going to achieve the ui i want to make?
Are there other third party solutions that can help along like ActionBarSherlock?
I am using the Eclipse ADT, would you recommend a different IDE?
Thanks a lot
PS - please don't refer me to the android developer tutorials, i've been thru them, and they are like learning the abc's while i need to make sentences and trying to find good sources for that, i am saying that because i found plenty of good questions on here that were just answered with "here is the really basic tutorial, go do that"