Як я можу отримати гіперпосилання, які можна натиснути в AlertDialog, з рядкового ресурсу?


134

Я намагаюся досягти - це те, що в тексті повідомлення відображається гіперпосилання, яке можна натиснути AlertDialog. Хоча AlertDialogреалізація щасливо підкреслює і забарвлює будь-які гіперпосилання (визначені за допомогою <a href="...">переданого в рядок ресурсу Builder.setMessage) посилання не можна натискати.

Код, який я зараз використовую, виглядає приблизно так:

new AlertDialog.Builder(MainActivity.this).setTitle(
        R.string.Title_About).setMessage(
        getResources().getText(R.string.about))
        .setPositiveButton(android.R.string.ok, null)
        .setIcon(R.drawable.icon).show();

Я хотів би уникати використання WebViewпросто відображення текстового фрагмента.


Привіт! Ви справді досягаєте оголошених результатів ("радісно підкреслює та забарвлює будь-які гіперпосилання")? Яке значення рядка ви передаєте?
Максим Гонтар

1
Так, головним є те, щоб повідомлення відображалося в рядковому ресурсі, який Resources.getText (...) повертається як android.text.Spanned, зберігаючи форматування HTML. Як тільки ви перетворите його на струну, магія зникає.
Тіло-Олександр Гінкель

Відповіді:


128

Якщо у діалоговому вікні ви показуєте лише текст та URL-адреси, можливо, рішення простіше

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_message));
  Linkify.addLinks(s, Linkify.WEB_URLS);
  message.setText(s);
  message.setMovementMethod(LinkMovementMethod.getInstance());

  return new AlertDialog.Builder(context)
   .setTitle(R.string.dialog_title)
   .setCancelable(true)
   .setIcon(android.R.drawable.ic_dialog_info)
   .setPositiveButton(R.string.dialog_action_dismiss, null)
   .setView(message)
   .create();
 }
}

Як показано тут http://picasaweb.google.com/lh/photo/up29wTQeK_zuz-LLvre9wQ?feat=directlink

Діалогове вікно сповіщення з посиланнями, які можна натиснути


1
ви, ймовірно, хочете створити файл макета і надути його та використовувати його як перегляд.
Джефрі Блатман

5
Як би ви встановили стиль textView, щоб він відповідав тому, який використовується за замовчуванням?
андроїд розробник

3
Потім я отримую помилкуCalling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
ViliusK

207

Мені не дуже сподобалась найпопулярніша на даний момент відповідь, оскільки вона суттєво змінює форматування повідомлення в діалоговому вікні.

Ось рішення, яке пов'язуватиме текст вашого діалогу, не змінюючи стилю тексту:

    // Linkify the message
    final SpannableString s = new SpannableString(msg); // msg should have url to enable clicking
    Linkify.addLinks(s, Linkify.ALL);

    final AlertDialog d = new AlertDialog.Builder(activity)
        .setPositiveButton(android.R.string.ok, null)
        .setIcon(R.drawable.icon)
        .setMessage( s )
        .create();

    d.show();

    // Make the textview clickable. Must be called after show()
    ((TextView)d.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());

5
Cheers, працював для мене зсередини onCreateDialogз DialogFragment. Просто довелося встановити код, який можна натиснути onStart, showякщо було покликано викликати DialogFragment
PJL

5
Це, мабуть, робить увесь TextView натисканням на відміну від лише посилань ... Будь-який шлях до цього?
Каві

1
Я погоджуюся, що це набагато кращий варіант, оскільки оригінальна відповідь візуально порушує діалог.
hcpl

1
Перегляд, повернутий findViewById, слід перевірити "instanceof TextView", оскільки немає гарантії, що реалізація не зміниться.
Денис Гладкий

6
Як зазначено в іншому місці, якщо використовується setMessage(R.string.something), не потрібно явно посилатись. Також не потрібно create()об’єкту AlertDialog перед викликом show()(його можна викликати у Builder), і оскільки show()повертає об'єкт діалогу, це findViewById(android.R.id.message)може бути ланцюжком. Згорніть все це у спробі лову на всякий випадок, якщо подання повідомлення не є TextView, і у вас є стисла формулювання.
П’єр-Люк Паур

50

Це також повинно зробити <a href>теги для виділення. Зверніть увагу, що я щойно додав кілька рядків до коду emmby. так йому заслуга

final AlertDialog d = new AlertDialog.Builder(this)
 .setPositiveButton(android.R.string.ok, null)
 .setIcon(R.drawable.icon)
 .setMessage(Html.fromHtml("<a href=\"http://www.google.com\">Check this link out</a>"))
 .create();
d.show();
// Make the textview clickable. Must be called after show()   
    ((TextView)d.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());

10
Якщо ви використовуєте html у strings.xml, вам не потрібно використовувати Html.fromHtml. setMessage(R.string.cool_link)працює з<string name="cool_link"><a href="http://www.google.com">Check this link out</a></string>
idbrii

2
Це правда. Якщо ви комбінуєте обидва способи (Html.fromHtml та тег HTML у strings.xml), це не працює.
JerabekJakub

Пройшов деякий час, і відHtml застаріло, а що тепер?
Менаше

Ви все ще можете користуватися fromHtml: developer.android.com/reference/android/text/… , int) Просто використовуватиHtml.fromHtml("string with links", Html.FROM_HTML_MODE_LEGACY)
BVB

2
setMovementMethod()тут є важливою частиною, інакше URL-адресу не можна буде натискати.
scai

13

Насправді, якщо ви хочете просто використовувати рядок, не торкаючись усіх переглядів, найшвидший спосіб - знайти перегляд тексту повідомлення та зв’язати його:

d.setMessage("Insert your cool string with links and stuff here");
Linkify.addLinks((TextView) d.findViewById(android.R.id.message), Linkify.ALL);

12

JFTR, ось рішення, яке я зрозумів через деякий час:

View view = View.inflate(MainActivity.this, R.layout.about, null);
TextView textView = (TextView) view.findViewById(R.id.message);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(R.string.Text_About);
new AlertDialog.Builder(MainActivity.this).setTitle(
        R.string.Title_About).setView(view)
        .setPositiveButton(android.R.string.ok, null)
        .setIcon(R.drawable.icon).show();

Відповідний about.xml, запозичений як фрагмент із джерел Android, виглядає так:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollView" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:paddingTop="2dip"
    android:paddingBottom="12dip" android:paddingLeft="14dip"
    android:paddingRight="10dip">
    <TextView android:id="@+id/message" style="?android:attr/textAppearanceMedium"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:padding="5dip" android:linksClickable="true" />
</ScrollView>

Важливими частинами є встановлення linkClickable до true та setMovementMethod (LinkMovementMethod.getInstance ()).


Дякую, це вирішило проблему для мене. У моєму випадку цього не потрібно було setLinksClickable(true)(я думаю, це вже було), але setMovementMethod(...)все змінило.
LarsH

10

Замість ...

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
dialogBuilder.setTitle(R.string.my_title);
dialogBuilder.setMessage(R.string.my_text);

... Зараз я використовую:

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
dialogBuilder.setTitle(R.string.my_title);
TextView textView = new TextView(this);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(R.string.my_text);
dialogBuilder.setView(textView);

Гей, твій соль працює. чи знаєте ви, чому все перегляд тексту блимає при натисканні на посилання?
aimango

Він не прокручується, як це робиться за замовчуванням.
Meow Cat 2012,

7

Найпростіший спосіб:

final AlertDialog dlg = new AlertDialog.Builder(this)
                .setTitle(R.string.title)
                .setMessage(R.string.message)
                .setNeutralButton(R.string.close_button, null)
                .create();
        dlg.show();
        // Important! android.R.id.message will be available ONLY AFTER show()
        ((TextView)dlg.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());

6

Усі вищевказані відповіді не видалять тег html, як, тощо. Якщо дана рядок містить, я намагався видалити всі теги, і це добре працює для мене

AlertDialog.Builder builder = new AlertDialog.Builder(ctx);
        builder.setTitle("Title");

        LayoutInflater inflater = (LayoutInflater) ctx.getSystemService(LAYOUT_INFLATER_SERVICE);
        View layout = inflater.inflate(R.layout.custom_dialog, null);

        TextView text = (TextView) layout.findViewById(R.id.text);
        text.setMovementMethod(LinkMovementMethod.getInstance());
        text.setText(Html.fromHtml("<b>Hello World</b> This is a test of the URL <a href=http://www.example.com> Example</a><p><b>This text is bold</b></p><p><em>This text is emphasized</em></p><p><code>This is computer output</code></p><p>This is<sub> subscript</sub> and <sup>superscript</sup></p>";));
        builder.setView(layout);
AlertDialog alert = builder.show();

і custom_dialog був би таким;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/layout_root"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:padding="10dp"
              >

    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:textColor="#FFF"
              />
</LinearLayout>

Вищевказаний код видалить усі теги html та покаже Приклад як URL, що вміє клацнути, всі інші у вказаному тексті форматування html.


5

Я не був дуже задоволений нинішніми відповідями. Є дві речі, які є важливими, коли потрібно натискати гіперпосилання в стилі href за допомогою AlertDialog:

  1. Встановіть вміст як Перегляд, а не за допомогою setMessage(…), оскільки лише Перегляди дозволяють вміст HTML, який можна натискати
  2. Встановити правильний метод руху ( setMovementMethod(…))

Ось робочий мінімальний приклад:

strings.xml

<string name="dialogContent">
    Cool Links:\n
    <a href="http://stackoverflow.com">Stackoverflow</a>\n
    <a href="http://android.stackexchange.com">Android Enthusiasts</a>\n
</string>

MyActivity.java


public void showCoolLinks(View view) {
   final TextView textView = new TextView(this);
   textView.setText(R.string.dialogContent);
   textView.setMovementMethod(LinkMovementMethod.getInstance()); // this is important to make the links clickable
   final AlertDialog alertDialog = new AlertDialog.Builder(this)
       .setPositiveButton("OK", null)
       .setView(textView)
       .create();
   alertDialog.show()
}

3

Я перевірив багато питань і відповідей, але це не працює. Я це робив сам. Це фрагмент коду на MainActivity.java.

private void skipToSplashActivity()
{

    final TextView textView = new TextView(this);
    final SpannableString str = new SpannableString(this.getText(R.string.dialog_message));

    textView.setText(str);
    textView.setMovementMethod(LinkMovementMethod.getInstance());

    ....
}

Помістіть цей тег на res \ values ​​\ String.xml

<string name="dialog_message"><a href="http://www.nhk.or.jp/privacy/english/">NHK Policy on Protection of Personal Information</a></string>

2

Я поєднав деякі варіанти, обговорені вище, щоб придумати цю функцію, яка працює для мене. передайте результат методу SetView () для розробника діалогу.

public ScrollView LinkifyText(String message) 
{
    ScrollView svMessage = new ScrollView(this); 
    TextView tvMessage = new TextView(this);

    SpannableString spanText = new SpannableString(message);

    Linkify.addLinks(spanText, Linkify.ALL);
    tvMessage.setText(spanText);
    tvMessage.setMovementMethod(LinkMovementMethod.getInstance());

    svMessage.setPadding(14, 2, 10, 12);
    svMessage.addView(tvMessage);

    return svMessage;
}

2

Якщо ви використовуєте DialogFragment, це рішення має допомогти.

public class MyDialogFragment extends DialogFragment {
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

        // dialog_text contains "This is a http://test.org/"
        String msg = getResources().getString(R.string.dialog_text);
        SpannableString spanMsg = new SpannableString(msg);
        Linkify.addLinks(spanMsg, Linkify.ALL);

        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
        builder.setTitle(R.string.dialog_title)
            .setMessage(spanMsg)
            .setPositiveButton(R.string.ok, null);
        return builder.create();
    }

    @Override
    public void onStart() {
        super.onStart();

        // Make the dialog's TextView clickable
        ((TextView)this.getDialog().findViewById(android.R.id.message))
                .setMovementMethod(LinkMovementMethod.getInstance());
    }
}

Якщо ви встановите SpannableString як повідомлення діалогу, посилання виділяється, але не може бути натиснуто.
bk138

@ bk138 Заклик до .setMovementMethod () в onStart () - це те, що робить посилання доступним для натискання.
тронман

2

Для мене найкращим рішенням для створення діалогу політики конфіденційності є:

    private void showPrivacyDialog() {
    if (!PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getBoolean(PRIVACY_DIALOG_SHOWN, false)) {

        String privacy_pol = "<a href='https://sites.google.com/view/aiqprivacypolicy/home'> Privacy Policy </a>";
        String toc = "<a href='https://sites.google.com/view/aiqprivacypolicy/home'> T&C </a>";
        AlertDialog dialog = new AlertDialog.Builder(this)
                .setMessage(Html.fromHtml("By using this application, you agree to " + privacy_pol + " and " + toc + " of this application."))
                .setPositiveButton("ACCEPT", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).edit().putBoolean(PRIVACY_DIALOG_SHOWN, true).apply();
                    }
                })
                .setNegativeButton("DECLINE", null)
                .setCancelable(false)
                .create();

        dialog.show();
        TextView textView = dialog.findViewById(android.R.id.message);
        textView.setLinksClickable(true);
        textView.setClickable(true);
        textView.setMovementMethod(LinkMovementMethod.getInstance());
    }
}

перевірте робочий приклад: посилання на додаток


1

Я роблю це, вказуючи поле попередження в ресурсі XML і завантажуючи його. Дивіться, наприклад, about.xml (див. Ідентифікатор ABOUT_URL), який отримує екземпляр у кінці ChandlerQE.java . Відповідні частини коду Java:

LayoutInflater inflater = 
    (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = (View) inflater.inflate(R.layout.about, null);

new AlertDialog.Builder(ChandlerQE.this)
.setTitle(R.string.about)
.setView(view)

посилання мертве, ви можете це виправити?
Bijoy Thangaraj

1

Це моє рішення. Він створює нормальне посилання без включених HTML-тегів і без видимих ​​URL-адрес. Він також зберігає дизайн неушкодженим.

SpannableString s = new SpannableString("This is my link.");
s.setSpan(new URLSpan("http://www.google.com"), 11, 15, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

AlertDialog.Builder builder;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    builder = new AlertDialog.Builder(this, android.R.style.Theme_Material_Dialog_Alert);
} else {
    builder = new AlertDialog.Builder(this);
}

final AlertDialog d = builder
        .setPositiveButton("CLOSE", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                // Do nothing, just close
            }
        })
        .setNegativeButton("SHARE", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                // Share the app
                share("Subject", "Text");
            }
        })
        .setIcon(R.drawable.photo_profile)
        .setMessage(s)
        .setTitle(R.string.about_title)
        .create();

d.show();

((TextView)d.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());

1
Дякую, просто додати setSpan (URL, startPoint, endPoint, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE). Тут startPoint і endPoint - слова, які будуть виділені для клацання
Manish

0

Найпростіший і найкоротший спосіб такий

Посилання Android у діалоговому вікні

((TextView) new AlertDialog.Builder(this)
.setTitle("Info")
.setIcon(android.R.drawable.ic_dialog_info)
.setMessage(Html.fromHtml("<p>Sample text, <a href=\"http://google.nl\">hyperlink</a>.</p>"))
.show()
// Need to be called after show(), in order to generate hyperlinks
.findViewById(android.R.id.message))
.setMovementMethod(LinkMovementMethod.getInstance());

Чи можете ви сказати мені, як це зробити в Котліні?
Томас Вільямс

Вибачте. Я не знаю Котліна
Хав'єр Кастельянос Крус
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.