Back to project page GasMileage.
The source code is released under:
GNU General Public License
If you think the Android project GasMileage 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.ving.gasmileage; // w ww.ja v a2 s . co m import android.content.Context; import android.view.View.MeasureSpec; import android.widget.ExpandableListView; public class CustExpListView extends ExpandableListView { int intGroupPosition, intChildPosition, intGroupid; public CustExpListView(Context mpgListAdapter) { super(mpgListAdapter); } protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { widthMeasureSpec = MeasureSpec.makeMeasureSpec(960, MeasureSpec.AT_MOST); heightMeasureSpec = MeasureSpec.makeMeasureSpec(28800, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, heightMeasureSpec); } }