Back to project page DrPermissions.
The source code is released under:
Apache License
If you think the Android project DrPermissions listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Projet : Permission Explorer// w w w. ja v a2 s . com * Auteur : Carlo Criniti * Date : 2011.06.10 * * Classe Preference * Activit? d'affichage des pr?f?rences */ package ir.smartlab.permissions; import android.os.Bundle; import android.preference.PreferenceActivity; import ir.smartlab.permissions.R; public class Preference extends PreferenceActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Cr?ation de l'interface de pr?f?rences addPreferencesFromResource(R.xml.preference); } }