Back to project page Findbooks.
The source code is released under:
Copyright (c) 2010, Shaka Huang All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Re...
If you think the Android project Findbooks 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.corner23.android.findbooks; // w w w .j a v a2s .c o m import android.os.Bundle; import android.preference.PreferenceActivity; public class Settings extends PreferenceActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.getPreferenceManager().setSharedPreferencesName("Findbooks"); addPreferencesFromResource(R.xml.preferences); } }