खोज…


परिचय

यह विषय अतिरिक्त सुविधाओं के साथ एक 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