Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/android/Notification.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Licensed to the Apache Software Foundation (ASF) under one
import android.net.Uri;
import android.widget.EditText;
import android.widget.TextView;

import android.text.Html;

/**
* This class provides access to notifications on the device.
Expand Down Expand Up @@ -165,7 +165,7 @@ public synchronized void alert(final String message, final String title, final S
public void run() {

AlertDialog.Builder dlg = createDialog(cordova); // new AlertDialog.Builder(cordova.getActivity(), AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);
dlg.setMessage(message);
dlg.setMessage(Html.fromHtml(message));
dlg.setTitle(title);
dlg.setCancelable(true);
dlg.setPositiveButton(buttonLabel,
Expand Down