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; /*ww w . ja va 2s . c om*/ import android.content.Context; import android.util.AttributeSet; import android.widget.LinearLayout; public class ScaledLinearLayout extends LinearLayout { public ScaledLinearLayout(Context pContext) { super(pContext); } public ScaledLinearLayout(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } public ScaledLinearLayout(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec*4, heightMeasureSpec*4); } }