Back to project page android-for-dummies-v3.
The source code is released under:
Apache License
If you think the Android project android-for-dummies-v3 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.dummies.tasks.fragment; //from ww w . j a v a 2s . c o m import android.os.Bundle; import android.preference.EditTextPreference; import android.preference.PreferenceFragment; import android.text.method.DigitsKeyListener; import com.dummies.tasks.R; /** * A fragment that reads a list of preferences from a file and shows * them to the user for editing. */ public class PreferencesFragment extends PreferenceFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Construct the preferences screen from the XML config addPreferencesFromResource(R.xml.task_preferences); // Use the number keyboard when editing the time preference EditTextPreference timeDefault = (EditTextPreference) findPreference(getString(R.string .pref_default_time_from_now_key)); timeDefault.getEditText().setKeyListener(DigitsKeyListener .getInstance()); } }