我有了這個代碼來創建使用一個TextView可點擊的鏈接一個警告對話框:不能調用類alertdialog
public static class MyOtherAlertDialog {
public static AlertDialog create(Context context) {
final TextView message = new TextView(context);
// i.e.: R.string.dialog_message =>
// "Test this dialog following the link to dtmilano.blogspot.com"
final SpannableString s =
new SpannableString(context.getText(R.string.dialog_about));
Linkify.addLinks(s, Linkify.WEB_URLS);
message.setText(s);
message.setMovementMethod(LinkMovementMethod.getInstance());
return new AlertDialog.Builder(context)
.setTitle(R.string.about)
.setCancelable(true)
.setIcon(android.R.drawable.ic_dialog_info)
.setPositiveButton("ok", null)
.setView(message)
.create();
}
}
但我不知道究竟怎麼稱呼它,
我試過了:
MyOtherAlertDialog variable = new MyOtherAlertDialog();
variable.create(this);
但是沒有運氣,該怎麼稱呼這個班?
謝謝你,工作。我試圖學習java,但我更喜歡通過玩它來學習它。 (我會盡快接受你的回答。) – Mdlc