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; // w w w .j a v a2 s .c o m import android.content.Context; import android.util.AttributeSet; import android.widget.RelativeLayout; public class ScaledRelativeLayout extends RelativeLayout { public ScaledRelativeLayout(Context pContext) { super(pContext); } public ScaledRelativeLayout(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } public ScaledRelativeLayout(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec*4, heightMeasureSpec*4); } }