Back to project page blooba-livewallpaper.
The source code is released under:
Creative Commons Attribution NonCommercial NoDerivs (CC-NC-ND) THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTE...
If you think the Android project blooba-livewallpaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * BloobaSettings.java// w ww . j a v a 2s .c om * Author: marek.brodziak@gmail.com * Created: Feb 4, 2014 * Copyright 2014 by miniti */ package pl.miniti.android.blooba; import android.os.Bundle; import android.preference.PreferenceActivity; /** * Activity for initializing Blooba settings screen */ public class BloobaSettings extends PreferenceActivity { /** * Merely loads the resource with preference screen configuration * * @param savedInstanceState * context */ @Override @SuppressWarnings("deprecation") protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.blooba_settings); } }