Android Open Source - Android-zRAMconfig Z R A Mconfig Preferences Activity






From Project

Back to project page Android-zRAMconfig.

License

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.

Java Source Code

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);
    }
}




Java Source Code List

at.drnet.android.zramconfig.ZRAMconfigActivity.java
at.drnet.android.zramconfig.ZRAMconfigPreferencesActivity.java
at.drnet.android.zramconfig.ZRAMconfigShowToastActivity.java