Back to project page Gopro-Manager-Android.
The source code is released under:
GNU General Public License
If you think the Android project Gopro-Manager-Android 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.gopromanager; import android.os.Bundle; import android.preference.PreferenceActivity; /*from w ww . j a v a 2s . com*/ public class MyPreferencesActivity extends PreferenceActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); } }