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 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示