Back to project page open-radiobrony.
The source code is released under:
Apache License
If you think the Android project open-radiobrony 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 com.lesikapk.openradiobrony; /* w w w. java 2 s . c om*/ import android.content.Context; import android.util.AttributeSet; import android.widget.ImageView; public class LayoutSuppressingImageView extends ImageView { public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) { super(context, attrs); } @Override public void requestLayout() { forceLayout(); } }