Back to project page septica-for-android.
The source code is released under:
MIT License
If you think the Android project septica-for-android 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 fera.costin.alexandru.ui; /*from ww w . j ava 2s . c o m*/ import fera.costin.alexandru.R; import android.os.Bundle; import android.preference.PreferenceActivity; //import android.util.Log; import android.view.Window; import android.view.WindowManager; /** * * @author Alexandru Fera * */ public class PreferencesActivity extends PreferenceActivity { //public static final String TAG = "septica"; /** Called when the activity is first created. */ @Override protected void onCreate(Bundle savedInstanceState) { // Go full-screen. // Hide the title and notification bar for extra room. requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); //Log.d(TAG, "onCreate in PreferencesActivity"); } }