목록전체 글 (1525)
오늘도 공부
포토샵에서 스크립트로 다 분리하는 방법입니다. http://www.uncorkedstudios.com/blog/export-to-android-photoshop-script/
출처 : https://stackoverflow.com/a/43343039Observable observable1 = Observable.from(new String[]{"A", "B", "C", "D"}); Observable observable2 = Observable.from(new String[]{"E", "C", "B", "G", "J", "O"}); observable1.concatMap(new Func1() { @Override public Observable call(final String string) { return observable2.contains(string); } }).zipWith(observable1, new Func2() { @Override public String ca..
출처 : https://github.com/ReactiveX/RxAndroid/wiki RxLifecycle - Lifecycle handling APIs for Android apps using RxJavaRxBinding - RxJava binding APIs for Android's UI widgets.SqlBrite - A lightweight wrapper around SQLiteOpenHelper and ContentResolver which introduces reactive stream semantics to queries.Android-ReactiveLocation - Library that wraps location play services API boilerplate with a re..
/*** * This is a helper wrapper Subscriber that helps you lazily defer * continuous paging of a result set from some API. * Through the use of a {@link Subject}, it helps notify the original {@link Observable} * when to perform an additional fetch. * The notification is sent when a certain count of items has been reached. * Generally this count represents the page. * @param The event type */ @Da..
http://archive.li/aWpHd
http://forensic-proof.com/archives/300
꽤 괜찮은 것 많네요.http://download.androidhive.info/
출처 : https://raseshmori.wordpress.com/2015/01/07/mockito-and-power-mockito-cheatsheet/@RunWith(PowerMockRunner.class) – Tell Junit that run this test using PowerMockRunner@PrepareForTest(A.class) – This is needed when we need to test static methods of A classAService mock = PowerMockito.mock(A.class) – Creating a mock for A classPowerMockito.when(mock.mockedMethod()).thenReturn(value) – When moc..
