Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.evendanan.android.thumbremote.ui; //from w ww. j ava 2 s .c o m import android.content.Context; import android.util.AttributeSet; import android.widget.ViewFlipper; /* * http://daniel-codes.blogspot.com/2010/05/viewflipper-receiver-not-registered.html */ public class FixedViewFlipper extends ViewFlipper { public FixedViewFlipper(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDetachedFromWindow() { try { super.onDetachedFromWindow(); } catch (IllegalArgumentException e) { stopFlipping(); } } }