Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for html message in alert #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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