Back to project page CheckListView.
The source code is released under:
Apache License
If you think the Android project CheckListView 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 it.feio.android.checklistview; // w w w .j a va 2 s . co m import android.app.Application; public class App extends Application { private static Settings settings; public static Settings getSettings() { if (settings == null) { settings = new Settings(); } return settings; } }