Back to project page LocationUpdate.
The source code is released under:
Copyright (c) 2011 Stefan A. van der Meer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to dea...
If you think the Android project LocationUpdate 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.meernet.LocationUpdate; //w ww. j a va 2s .c om import android.os.Bundle; import android.preference.PreferenceActivity; /** * Preference activity for LocationUpdate settings. * * @author svdm * */ public class LocationUpdatePrefs extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getPreferenceManager().setSharedPreferencesName(SendService.PREFS_NAME); addPreferencesFromResource(R.layout.preferences); } }