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
| import rx.Observable; | |
| import rx.subjects.PublishSubject; | |
| import rx.subjects.SerializedSubject; | |
| import rx.subjects.Subject; | |
| /** | |
| * Simple pass-thru event bus with error handling and reconnect. | |
| */ | |
| public class EventBus { |
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