(四)变换map

一.map

将事件序列中的对象或对象序列进行转换

Observable.just("images/logo.png") // 输入类型String 
.map(new Func1() { 
    @Override 
    public Bitmap call(String filePath) { 
    // 参数类型 String 
    return getBitmapFromPath(filePath); // 返回类型 Bitmap 
    } 
}) 
.subscribe(new Action1() { 
    @Override 
    public void call(Bitmap bitmap) { 
    // 参数类型 Bitmap 
    showBitmap(bitmap); 
    } 
});

你可能感兴趣的:((四)变换map)