Back to project page RSSFeedReader-App.
The source code is released under:
GNU General Public License
If you think the Android project RSSFeedReader-App 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 tan.chesley.rssfeedreader; /*from ww w. j a va2 s . c o m*/ import android.content.Context; import android.content.DialogInterface; import android.preference.DialogPreference; import android.util.AttributeSet; import android.view.View; public class NumberPickerDialogPreference extends DialogPreference{ public NumberPickerDialogPreference(Context context, AttributeSet attrs) { super(context, attrs); setDialogLayoutResource(R.layout.number_picker_dialog); } @Override protected void onBindDialogView (View view) { super.onBindDialogView(view); } @Override public void onClick (DialogInterface dialog, int which) { super.onClick(dialog, which); } }