Back to project page task-timer-legacy.
The source code is released under:
GNU General Public License
If you think the Android project task-timer-legacy 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.gawdl3y.android.tasktimer.util; //from ww w . j a va 2s . c o m import android.content.Context; import android.util.AttributeSet; /** * A wrapper for the built-in DialogPreference * <p>This implementation does absolutely nothing special.</p> */ public class DialogPreference extends android.preference.DialogPreference { /** * Constructor * @param context The context for the DialogPreference * @param attrs The attribute set for the DialogPreference * @see android.preference.DialogPreference#DialogPreference(android.content.Context, android.util.AttributeSet) */ public DialogPreference(Context context, AttributeSet attrs) { super(context, attrs); } }