プログラムでDialogPreferenceを使用していますが、DialogPreferenceを使用して[OK]ボタンをクリックしながらWebページにリダイレクトしたいと思います。
Preferences.xml:-
<com.chr.tatu.sample.friendslist.contacts.TimePickerPreferences
android:defaultValue=""
android:key="about"
android:summary="Summary"
android:title="Title"
android:negativeButtonText="@null" />
TimePickerPreferences.java:-
public class TimePickerPreferences extends DialogPreference
{
public TimePickerPreferences(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TimePickerPreferences(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}