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 games.ghoststories.views.title; /* w ww . j av a 2s.com*/ import android.content.Context; import android.util.AttributeSet; import android.widget.LinearLayout; /** * The title screen view. */ public class TitleScreen extends LinearLayout { /** * Constructor * @param pContext */ public TitleScreen(Context pContext) { super(pContext); } /** * Constructor * @param pContext * @param pAttrs */ public TitleScreen(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } /** * Constructor * @param pContext * @param pAttrs * @param pDefStyle */ public TitleScreen(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } }