Agera 一个来自谷歌官方的超轻量Android库

Agera(在瑞典语中表示“行动”)是超轻量Android库,可以为生命周期内不同形式的Android应用组件(如:活动组件Activities)或对象(如:视图对象Views)提供待用数据。该Android库引入函数响应编程机制,有利于数据处理过程中清晰划分时间、地点、要素等内容,因此只需使用拟自然语言简单说明便能描述复杂的异步处理过程。

下列演示了Agera的某些功能。该Wiki内容和Java文档说了Agera 各部分工作机制

public class AgeraActivity extends Activity implements Receiver<Bitmap>, Updatable {
      private static final ExecutorService NETWORK_EXECUTOR = newSingleThreadExecutor();
      private static final ExecutorService DECODE_EXECUTOR = newSingleThreadExecutor();

      private Repository<Result<Bitmap>> background;
      private ImageView backgroundView;

      @Override
      protected void onCreate(final Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Set the content view
        setContentView(R.layout.activity_main);

        // Find the background view
        backgroundView = (ImageView) findViewById(R.id.background);

        // Create a repository containing the result of a bitmap request. Initially absent, but
        // configured to fetch the bitmap over the network based on display size.
        background = repositoryWithInitialValue(Result.<Bitmap>absent())
            .observe() // Optionally refresh the bitmap on events. In this case, never
            .onUpdatesPerLoop() // Refresh per Looper thread loop. In this case, never
            .getFrom(new Supplier<HttpRequest>() {
              @NonNull
              @Override
              public HttpRequest get() {
                DisplayMetrics displayMetrics = getResources().getDisplayMetrics();
                int size = Math.max(displayMetrics.heightPixels, displayMetrics.widthPixels);
                return httpGetRequest(
                    "http://www.gravatar.com/avatar/4df6f4fe5976df17deeea19443d4429d?s=" + size)
                    .compile();
              }
            }) // Supply an HttpRequest based on the display size
            .goTo(NETWORK_EXECUTOR) // Change execution to the network executor
            .attemptTransform(httpFunction())
            .orSkip() // Make the actual http request, skip on failure
            .goTo(DECODE_EXECUTOR) // Change execution to the decode executor
            .thenTransform(new Function<HttpResponse, Result<Bitmap>>() {
              @NonNull
              @Override
              public Result<Bitmap> apply(@NonNull HttpResponse response) {
                byte[] body = response.getBody();
                return absentIfNull(decodeByteArray(body, 0, body.length));
              }
            }) // Decode the successful http response to the result of a bitmap, absent on failure
            .onDeactivation(SEND_INTERRUPT) // Interrupt http request/decode on deactivation
            .compile(); // Create the repository
      }

      @Override
      protected void onResume() {
        super.onResume();
        background.addUpdatable(this); // Start listening to the repository, triggering the flow
      }

      @Override
      protected void onPause() {
        super.onPause();
        background.removeUpdatable(this); // Stop listening to the repository, deactivating it
      }

      @Override
      public void update() {
        // Called as the repository is updated
        background.get().ifSucceededSendTo(this); // If containing a valid bitmap, send to accept below
      }

      @Override
      public void accept(@NonNull Bitmap background) {
        backgroundView.setImageBitmap(background); // Set the background bitmap to the background view
      }
    }
本文转自:深度开源(open-open.com)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值