h497991913 2015-07-01 13:06 采纳率: 0%
浏览 1696

安卓TextView背景循环改变

用什么方法能使TextView背景隔一秒后变为红色,再隔二秒后变为绿色,再隔三秒后变为蓝色,
我刚学习这个,哪位大神能帮我一下

  • 写回答

2条回答 默认 最新

  • danielinbiti 2015-07-01 13:30
    关注
    没有测试,差不多就下面这样,定时加颜色设置 就可以了
     public class HanderDemoActivity extends Activity {  
        TextView tvShow;  
        private int TIME = 1000; 
        private int cnt=0; 
    
        @Override  
        public void onCreate(Bundle savedInstanceState) {  
            super.onCreate(savedInstanceState);  
            setContentView(R.layout.main);  
            tvShow = (TextView) findViewById(R.id.tv_show);  
            handler.postDelayed(runnable, TIME); //每隔1s执行  
        }  
    
        Handler handler = new Handler();  
        Runnable runnable = new Runnable() {  
    
            @Override  
            public void run() {  
                // handler自带方法实现定时器  
                try {  
                    TIME = TIME+1000;//没执行一次增加1秒
                    cnt++;
                    if (cnt % 3==1){
                        tvShow.setBackgroundColor(android.graphics.Color.RED);
                    }else if(cnt % 3==2){
                      tvShow.setBackgroundColor(android.graphics.Color.GREEN);
                    }else if(cnt % 3==0){
                      tvShow.setBackgroundColor(android.graphics.Color.BLUE);
                    }
                    handler.postDelayed(this, TIME);  
                    tvShow.setText(Integer.toString(cnt)); 
    
                    System.out.println("do...");  
                } catch (Exception e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                    System.out.println("exception...");  
                }  
            }  
        };  
    
    }  
    
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?