gpt4 book ai didi

android - 使用 DialogPreference 单击确定按钮时重定向到网页

转载 作者:行者123 更新时间:2023-11-30 03:46:37 26 4
gpt4 key购买 nike

我在我的程序中使用 DialogPreference,现在我想使用 DialogPreference 在单击 OK 按钮时重定向到网页

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);

}
}

最佳答案

试试这段代码:

  @Override
public void onClick(DialogInterface dialog,
int button) {
if (button == Dialog.BUTTON_POSITIVE)
{Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
myWebLink.setData(Uri.parse("http://www.google.com"));
startActivity(myWebLink);
}
}

关于android - 使用 DialogPreference 单击确定按钮时重定向到网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14895414/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com