Back to project page Skeleton.
The source code is released under:
Apache License
If you think the Android project Skeleton 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.gordon.skeleton.containers; /* w ww. j a va 2 s . co m*/ import com.gordon.skeleton.screens.Screen; /** * Created by kg on 11/26/14. */ public interface Container { public void showScreen(Screen screen); public Screen getDefaultScreen(); }