blob: 85a1e3afd1be0a49c6d2d7eb54bd645cc4f9f217 [file] [log] [blame]
package com.savoirfairelinux.sflphone.views;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.GridView;
public class TACGridView extends GridView {
public TACGridView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public TACGridView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TACGridView(Context context) {
super(context);
}
boolean expanded = false;
public boolean isExpanded() {
return expanded;
}
public void setExpanded(boolean expanded) {
this.expanded = expanded;
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (isExpanded()) {
// Calculate entire height by providing a very large height hint.
// But do not use the highest 2 bits of this integer; those are
// reserved for the MeasureSpec mode.
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
android.view.ViewGroup.LayoutParams params = getLayoutParams();
params.height = getMeasuredHeight();
} else {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
}