Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a TabActivity implemented for my project which is running fine up to 2.3 versions, but crashes for versions greater than 3.How can I convert the code written for TabHostActivity to Fragments.

share|improve this question

2 Answers

up vote 3 down vote accepted

add android-support-v4.jar file for supporting Fragments in android 3.0 lower versions.Follow below link for downloading jar file.

http://www.java2s.com/Code/Jar/a/Downloadandroidsupportv4jar.htm

share|improve this answer
I think u got it wrong..I want to convert my code which is written using TabActivity to Fragments. – Raghav Apr 5 '12 at 7:26
If you want use Fragment concept in below Android3.0 versions you can't run.For that you need to add the above jar file to your project.You mentioned that 'I want convert tabactivity to Fragments' so I gave the above answer. – Venkata Krishna Apr 5 '12 at 7:28
Ok..Is there any tutorial for converting tabhost to fragments in higher versions? – Raghav Apr 5 '12 at 7:30
That will depend on your UI and Functional requirements – Venkata Krishna Apr 5 '12 at 7:31
Ok thanks...... – Raghav Apr 5 '12 at 7:35

http://android10.org/index.php/articlesuserinterface/309-learn-how-to-implement-fragments-in-android

This is a good link to learn how to implement fragments and to allow lower versions to use fragments following link is useful.

http://android10.org/index.php/articlesuserinterface/311-android-compatibility-fragments-for-all

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.