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 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python