Back to project page Text-Edit-for-Android.
The source code is released under:
GNU General Public License
If you think the Android project Text-Edit-for-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 org.paulmach.textedit; /* w w w . j a v a 2s . c o m*/ import android.content.Context; import android.content.SharedPreferences; import android.preference.Preference; import android.preference.PreferenceManager; import android.util.AttributeSet; import android.widget.Toast; /* ClearListPreference * The Special clear recent file list preference * Needs it's own special class so you can just click on it */ public class ClearRecentFileListPreference extends Preference { // This is the constructor called by the inflater public ClearRecentFileListPreference(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onClick() { // Data has changed, notify so UI can be refreshed! SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(getContext()).edit(); editor.putInt("rf_numfiles", 0); editor.commit(); Toast.makeText(getContext(), R.string.onListCleared, Toast.LENGTH_SHORT).show(); notifyChanged(); } } // end class ClearListPreference