Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to inflate a layout containing a Fragment using the backwards compatibility package. I took the jar file and placed it in the libs folder of my project. I extended Fragment and then tried to inflate it by setting the contentView of the Activity to

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical">
 <fragment
  class="com.test.fragments.AdFragment"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"/></LinearLayout>

But when I set the content view it fails with a ClassNotFoundException for the fragment tag. Here is the logcat output. I hope someone can help!

15422         AndroidRuntime  E  java.lang.RuntimeException: Unable to start activity ComponentInfo{}: android.view.InflateException: Binary XML file line #51: Error inflating class fragment
 15422         AndroidRuntime  E    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1777)
 15422         AndroidRuntime  E    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1793)
 15422         AndroidRuntime  E    at android.app.ActivityThread.access$1500(ActivityThread.java:123)
 15422         AndroidRuntime  E    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:939)
 15422         AndroidRuntime  E    at android.os.Handler.dispatchMessage(Handler.java:99)
 15422         AndroidRuntime  E    at android.os.Looper.loop(Looper.java:123)
 15422         AndroidRuntime  E    at android.app.ActivityThread.main(ActivityThread.java:3848)
 15422         AndroidRuntime  E    at java.lang.reflect.Method.invokeNative(Native Method)
 15422         AndroidRuntime  E    at java.lang.reflect.Method.invoke(Method.java:507)
 15422         AndroidRuntime  E    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
 15422         AndroidRuntime  E    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
 15422         AndroidRuntime  E    at dalvik.system.NativeStart.main(Native Method)
 15422         AndroidRuntime  E  Caused by: android.view.InflateException: Binary XML file line #51: Error inflating class fragment
 15422         AndroidRuntime  E    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:581)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.rInflate(LayoutInflater.java:623)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
 15422         AndroidRuntime  E    at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:211)
 15422         AndroidRuntime  E    at android.app.Activity.setContentView(Activity.java:1657)
 15422         AndroidRuntime  E    at com.test.base.activities.TabbedStoreActivity.onCreate(TabbedStoreActivity.java:46)
 15422         AndroidRuntime  E    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
 15422         AndroidRuntime  E    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1731)
 15422         AndroidRuntime  E    ... 11 more
 15422         AndroidRuntime  E  Caused by: java.lang.ClassNotFoundException: android.view.fragment in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.test.test.apk]
 15422         AndroidRuntime  E    at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:240)
 15422         AndroidRuntime  E    at java.lang.ClassLoader.loadClass(ClassLoader.java:551)
 15422         AndroidRuntime  E    at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.createView(LayoutInflater.java:471)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.onCreateView(LayoutInflater.java:549)
 15422         AndroidRuntime  E    at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:66)
 15422         AndroidRuntime  E    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:568)
 15422         AndroidRuntime  E    ... 20 more
share|improve this question
Similar problem: stackoverflow.com/questions/5510771/…. I had this issue because I wrote Fragment instead of fragment – Casebash Aug 17 '12 at 7:47

1 Answer

up vote 69 down vote accepted

Make sure your activity is inheriting from FragmentActivity, otherwise <fragment> does not work. Here is a sample project demonstrating this.

share|improve this answer
Thanks I will try this out tonight when I get home, crazy thing is I searched the docs and FragmentActivity isn't listed but then I checked the library and its in there alright. This puts a damper on my plans since there is no FragmentListActivity, etc. Makes it a whole lot of work at once rather than slowly moving stuff over to fragments. – schwiz Mar 23 '11 at 17:29
Suck! Is this a limitation only in the compatibility library for android versions less than 3.0, or is this a limitation in android 3.0? – emmby Mar 23 '11 at 19:33
1  
@emmby: The compatibility library needs this. If you are coding straight to the Android 3.0 fragment stuff, there is no FragmentActivity, as @schwiz points out. – CommonsWare Mar 23 '11 at 22:30
5  
thanks Mark that was the problem, also when you extend FragmentActivity you must call super.onCreate before setting the content view. – schwiz Mar 24 '11 at 2:44
1  
That was it, saved me from pulling my hair out all afternoon – Philippe Girolami Jun 1 '11 at 13:59
show 2 more comments

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.