This file contains 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 android.databinding.ObservableBoolean; | |
import rx.Observable; | |
import rx.subjects.BehaviorSubject; | |
/** | |
* Created by marius on 31/8/15. | |
* | |
* @music Antonia Font - Me sobren paraules | |
*/ |
This file contains 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.ics.utils; | |
import android.content.Context; | |
import android.graphics.Typeface; | |
import java.util.HashMap; | |
import java.util.Map; | |
/** | |
* Created by marius on 30/7/15. |
This file contains 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.ics.rxsamples | |
import android.app.Fragment; | |
import java.util.concurrent.TimeUnit; | |
import rx.Observable; | |
import rx.Subscription; | |
import rx.android.schedulers.AndroidSchedulers; | |
import rx.functions.Action1; | |
import rx.functions.Func1; | |
import rx.subjects.PublishSubject; |