This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company.app.PlatformMethods; | |
import java.util.HashMap; | |
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.Queue; | |
import java.util.Set; | |
import android.app.PendingIntent; | |
import android.content.BroadcastReceiver; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TextView tv = (TextView)findViewById(R.id.mytextview); | |
Spanned myStringSpanned = Html.fromHtml(myString, null, null); | |
tv.setText(myStringSpanned, TextView.BufferType.SPANNABLE); | |
Supporte TAGS on Android 2.1 | |
<a href="..."> | |
<b> | |
<big> | |
<blockquote> | |
<br> |
NewerOlder