수색…


소개

이 주제는 추가 기능으로 AlertDialog 를 향상시키는 것에 관한 것입니다.

클릭 가능한 링크가 포함 된 알림 대화 상자

그것을 클릭하여 열 수있는 링크가 포함 된 경고 대화 상자를 표시하려면 다음 코드를 사용할 수 있습니다.

AlertDialog.Builder builder1 = new AlertDialog.Builder(youractivity.this);

builder1.setMessage(Html.fromHtml("your message,<a href=\"http://www.google.com\">link</a>"));

builder1.setCancelable(false);
builder1.setPositiveButton("ok", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
    }
});

AlertDialog Alert1 = builder1.create();
Alert1 .show();
((TextView)Alert1.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow