Back to project page Android-zRAMconfig.
The source code is released under:
GNU General Public License
If you think the Android project Android-zRAMconfig 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 at.drnet.android.zramconfig; //from w ww. j ava2 s. c o m import at.drnet.android.zramconfig.R; import android.os.Bundle; import android.preference.PreferenceActivity; import android.preference.PreferenceManager; public class ZRAMconfigPreferencesActivity extends PreferenceActivity { @SuppressWarnings("deprecation") @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); PreferenceManager.setDefaultValues(this, R.xml.preferences, false); } }