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...");  
                }  
            }  
        };  
    
    }  
    
    评论

报告相同问题?

悬赏问题

  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗
  • ¥15 钢筋实图交点识别,机器视觉代码
  • ¥15 如何在Linux系统中,但是在window系统上idea里面可以正常运行?(相关搜索:jar包)
  • ¥50 400g qsfp 光模块iphy方案
  • ¥15 两块ADC0804用proteus仿真时,出现异常