zoukankan      html  css  js  c++  java
  • Handler基本用法

    片断一:
    mHandler = new Handler();
    mRunnable = new Runnable() {
    @Override
    public void run() {
    currentPosition++;
    Log.d("recyclerBanner", currentPosition + " ");
    mOverFlyingLayoutManager.scrollToPosition(currentPosition);
    // recyclerView.smoothScrollToPosition(currentPosition);
    mHandler.postDelayed(this, 3000);
    }
    };
    mHandler.postDelayed(mRunnable, 3000);

    片断二:
    mainHandler.sendEmptyMessageDelayed(Url.Banner,3000);
    @Override
    protected void disposeMainHandlerCallMethod(Message msg) {
    super.disposeMainHandlerCallMethod(msg);
    switch(msg.what){
    case Url.Banner:
    currentPosition++;
    Log.d("recyclerBanner", currentPosition + " ");
    mOverFlyingLayoutManager.scrollToPosition(currentPosition);
    // recyclerView.smoothScrollToPosition(currentPosition);
    mainHandler.sendEmptyMessageDelayed(Url.Banner,3000);
    break;
    default:break;
    }//end of switch
    }
    片断三:
     public void handleMessage(Message msg) {
            super.handleMessage(msg);
            switch (msg.what){
                case GET://get请求
                    tv_result.setText(msg.obj.toString());
                    break;
                case POST://post请求
                    tv_result.setText(msg.obj.toString());
                    break;
            }
        }

     
     new Thread(){
            @Override
            public void run() {
                super.run();
                try {
                String resutl = get("http://api.m.mtime.cn/PageSubArea/TrailerList.api");
                    Message msg = Message.obtain();
                    msg.what = GET;
                    msg.obj = resutl;
                    handler.sendMessage(msg);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }.start();
    }
  • 相关阅读:
    netty源码学习
    大话数据结构读书笔记
    java编程思想读书笔记
    spring依赖注入源码分析和mongodb自带连接本地mongodb服务逻辑分析
    spring的xml的property和constructor-arg的解析
    junit测试用例加载spring配置文件
    (大二下)软件需求分析阅读笔记01
    课后作业——需求分析
    2018年春季个人阅读计划
    软件需求与分析——大二下需会知识点
  • 原文地址:https://www.cnblogs.com/dubo-/p/8432506.html
Copyright © 2011-2022 走看看