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 followed this link to make a story app on Android but the problem is that the app is crashing after swiping 3 or 4 views (I am putting 5 pages to test but the story contains 13 pages).
The views are not being moved from memory when they aren't displayed knowing that the destroyItem() method in the pagerAdapter Class is overriden.
Please I need help. Thanks

share|improve this question
1  
Please post the code of your PagerAdapter and the stacktrace of the crash. – Adam L. Mónos Sep 6 '12 at 8:39

1 Answer

Here is the PagerAdapter code

public class MyPagerAdapter extends PagerAdapter {

public int getCount() {
    return 4;
}

public Object instantiateItem(View collection, int position) {

    LayoutInflater inflater = (LayoutInflater) collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    int resId = 0;
    switch (position) {
    case 0:
        resId = R.layout.page1;
        break;
    case 1:
        resId = R.layout.page2;
        break;
    case 2:
        resId = R.layout.page3;
        break;
    case 3:
        resId = R.layout.page4;
        break;
    }

    View view = inflater.inflate(resId, null);

    ((ViewPager) collection).addView(view, 0);

    return view;
}

@Override
public void destroyItem(View arg0, int arg1, Object arg2) {
    ((ViewPager) arg0).removeView((View) arg2);
}


@Override
public boolean isViewFromObject(View arg0, Object arg1) {
    return arg0 == ((View) arg1);

}

@Override
public Parcelable saveState() {
    return null;
}

}

And the stacktrace(logcat output)

        09-06 12:03:02.580: E/AndroidRuntime(29513): FATAL EXCEPTION: main
    09-06 12:03:02.580: E/AndroidRuntime(29513): android.view.InflateException: Binary XML file line #17: Error inflating class <unknown>
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.createView(LayoutInflater.java:596)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.onCreateView(LayoutInflater.java:644)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:669)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.rInflate(LayoutInflater.java:724)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.rInflate(LayoutInflater.java:727)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.inflate(LayoutInflater.java:479)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.inflate(LayoutInflater.java:391)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.inflate(LayoutInflater.java:347)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.example.alibabaproject.MyPagerAdapter.instantiateItem(MyPagerAdapter.java:40)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.PagerAdapter.instantiateItem(PagerAdapter.java:110)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.ViewPager.addNewItem(ViewPager.java:692)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.ViewPager.populate(ViewPager.java:849)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.ViewPager.populate(ViewPager.java:772)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.ViewPager.completeScroll(ViewPager.java:1539)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.support.v4.view.ViewPager.onInterceptTouchEvent(ViewPager.java:1663)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1231)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:1560)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1291)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:1560)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1291)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:1560)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1291)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:1560)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1291)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1862)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1286)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.app.Activity.dispatchTouchEvent(Activity.java:2315)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1835)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.View.dispatchPointerEvent(View.java:4694)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewRoot.deliverPointerEvent(ViewRoot.java:2419)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.ViewRoot.handleMessage(ViewRoot.java:2080)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.os.Handler.dispatchMessage(Handler.java:99)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.os.Looper.loop(Looper.java:132)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.app.ActivityThread.main(ActivityThread.java:4126)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at java.lang.reflect.Method.invokeNative(Native Method)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at java.lang.reflect.Method.invoke(Method.java:491)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at dalvik.system.NativeStart.main(Native Method)
    09-06 12:03:02.580: E/AndroidRuntime(29513): Caused by: java.lang.reflect.InvocationTargetException
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at java.lang.reflect.Constructor.constructNative(Native Method)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at java.lang.reflect.Constructor.newInstance(Constructor.java:416)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.view.LayoutInflater.createView(LayoutInflater.java:576)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    ... 39 more
    09-06 12:03:02.580: E/AndroidRuntime(29513): Caused by: java.lang.OutOfMemoryError
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:577)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:445)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.graphics.drawable.Drawable.createFromResourceStream(Drawable.java:738)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.content.res.Resources.loadDrawable(Resources.java:1918)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.content.res.TypedArray.getDrawable(TypedArray.java:601)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.widget.ImageView.<init>(ImageView.java:118)
    09-06 12:03:02.580: E/AndroidRuntime(29513):    at android.widget.ImageView.<init>(ImageView.java:108)
share|improve this answer
Maybe the problem is that my layouts (page1, page2, ...) contain high resolution images that need to be recycled but where to recycle them? In the destroyItem() method? – Maroun Nassar Sep 6 '12 at 12:36

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.