Back to project page PinterestLikeApp.
The source code is released under:
MIT License
If you think the Android project PinterestLikeApp 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.dreamtale.pintrestlike.widget; /*from w ww . ja v a 2 s. c om*/ import android.content.Context; import android.util.AttributeSet; import android.widget.GridView; public class PintrestGridView extends GridView { public PintrestGridView(Context context) { super(context); } public PintrestGridView(Context context, AttributeSet attrs) { super(context, attrs); } public PintrestGridView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } }