Back to project page GhostStories.
The source code is released under:
GNU General Public License
If you think the Android project GhostStories 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.views.layouts; //from w w w. j a v a 2 s . c o m import android.content.Context; import android.util.AttributeSet; import android.widget.TableLayout; public class SquareTableLayout extends TableLayout { public SquareTableLayout(Context context) { super(context); } public SquareTableLayout(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(heightMeasureSpec, heightMeasureSpec); } }