Back to project page UK-Weather-repo.
The source code is released under:
Apache License
If you think the Android project UK-Weather-repo 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 com.haringeymobile.ukweather; /*from ww w .j a v a 2 s.c om*/ import android.annotation.SuppressLint; import android.os.Bundle; import android.preference.PreferenceFragment; /** * A fragment to provide settings for the app for Android versions starting * with Honeycomb (version 11). */ @SuppressLint("NewApi") public class SettingsFragment extends PreferenceFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.userpreferences); } }