Android Open Source - list-grid-fragment Refreshable Grid View






From Project

Back to project page list-grid-fragment.

License

The source code is released under:

MIT License

If you think the Android project list-grid-fragment listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.conquermobile.listgridfragment;
/*w  ww.j av a  2s . com*/
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;

import com.android.photos.views.HeaderGridView;

/**
 * Created by feng on 2014-04-11.
 */
public class RefreshableGridView extends HeaderGridView {
    public RefreshableGridView(Context context) {
        super(context);
    }

    public RefreshableGridView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public RefreshableGridView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public void setVisibility(int visibility) {
        if (visibility == View.GONE && getCount() == 0) {
            return;
        }
        super.setVisibility(visibility);
    }
}




Java Source Code List

com.android.photos.views.HeaderGridView.java
com.conquermobile.listgridfragment.ListGridAdapter.java
com.conquermobile.listgridfragment.ListGridFragment.java
com.conquermobile.listgridfragment.RefreshableGridView.java