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; // w ww . j a v a2s .c om import android.app.TimePickerDialog; import android.content.Context; import android.content.DialogInterface; import android.preference.DialogPreference; import android.util.AttributeSet; import android.view.View; public class TimePickerDialogPreference extends DialogPreference{ public TimePickerDialogPreference(Context context, AttributeSet attributeSet) { super(context, attributeSet); setDialogLayoutResource(R.layout.time_picker_dialog); } @Override protected void onBindDialogView (View view) { super.onBindDialogView(view); } @Override public void onClick (DialogInterface dialog, int which) { super.onClick(dialog, which); } }