Back to project page BatteryDaydream.
The source code is released under:
Apache License
If you think the Android project BatteryDaydream 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 pl.patrykgrzegorczyk.batterydaydream.activity; /*from w w w.j ava2 s . c om*/ import android.app.Activity; import android.os.Bundle; import pl.patrykgrzegorczyk.batterydaydream.fragment.DebugPreferenceFragment; /** * Activity containing debug settings */ public class DebugSettingsActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager().beginTransaction().replace(android.R.id.content, new DebugPreferenceFragment()).commit(); } }