Back to project page planets.
The source code is released under:
GNU General Public License
If you think the Android project planets 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 se.liu.lysator.dahlberg.planets; //from www. jav a2s. c o m import se.liu.lysator.dahlberg.planets.util.SystemUiHider; import android.app.Activity; import android.os.Bundle; /** * An example full-screen activity that shows and hides the system UI (i.e. * status bar and navigation/system bar) with user interaction. * * @see SystemUiHider */ public class PlanetDetailsActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_planet_details); } }