NoScrollGridView.java
716 Bytes
package com.bitstrips.imoji.ui.views;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View.MeasureSpec;
import android.widget.GridView;
public class NoScrollGridView
extends GridView
{
public NoScrollGridView(Context paramContext, AttributeSet paramAttributeSet)
{
super(paramContext, paramAttributeSet);
}
public void onMeasure(int paramInt1, int paramInt2)
{
super.onMeasure(paramInt1, View.MeasureSpec.makeMeasureSpec(536870911, Integer.MIN_VALUE));
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/ui/views/NoScrollGridView.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/