Back to project page BulletsForever.
The source code is released under:
GNU General Public License
If you think the Android project BulletsForever 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.bulletsforever.bullets; /* w ww .jav a2 s . c o m*/ import android.os.Bundle; import android.preference.PreferenceActivity; /** * This is the app's preferences accessing Activity * This should be started from MenuHome * Multiple instances can be created/destroyed per app session, but only one can exist at a time */ public class MenuSettings extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.settings); this.setTitle("Bullets Forever - Settings"); } }