Skip to content
View flyer88's full-sized avatar

Organizations

@2-dfire @EOSNameServe
Block or Report

Block or report flyer88

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
flyer88/README.md

About me

My name is baiyanwu.

Android Engineer !

Crytpo holder !

Languages and Tools:

flyer88's github stats


baiyanwu | Twitter

Pinned Loading

  1. EasyJsBridge EasyJsBridge Public

    A bridge between Js and Java by webview

    Java 6 2

  2. SimpleTwoWayBinding SimpleTwoWayBinding Public

    A simple two-way data binding demo for android

    Java 3 1

  3. SlidingMenu SlidingMenu Public

    模仿qq的侧滑删除,打包成了一个简单的库

    Java 2 2

  4. JellyCircle JellyCircle Public

    Java 6 5

  5. 如何实现 RxJava 的链式调用 -- map 方法的实现 如何实现 RxJava 的链式调用 -- map 方法的实现
    1
    public interface Api{
    2
        void queryPhoto(String query,QueryCallback QueryCallback);
    3
        interface QueryCallback{
    4
            void onQuerySuccess(List<Photo> photoList);
    5
            void onQueryFailed(Exception e);
  6. 如何实现 RxJava 的链式调用--异步中的异步 flatMap 如何实现 RxJava 的链式调用--异步中的异步 flatMap
    1
    public interface Api{
    2
        void queryPhoto(String query,QueryCallback QueryCallback);
    3
        void store(Photo photo,StoreCallback storeCallback);
    4
        interface QueryCallback{
    5
            void onQuerySuccess(List<Photo> photoList);