以特定间隔更改背景
|
我必须每30秒更改一次背景图片,但无法获得正确的结果
我已经尝试使用线程和TimerTask。但没有工作。
我有port1,port2 ... etc图片。
在TimerTask中,背景消失了。
class Task1 extends TimerTask {
public void run() {
System.out.println(\"Checking a\");
Random r = new Random();
int i = r.nextInt(3) + 1;
rl.setBackgroundResource(getResources().getIdentifier(
\"port\" + i, \"drawable\",\"com.samcom.breakingdowncd\"));
}
}
Timer timerBackground = new Timer();
timerBackground.scheduleAtFixedRate(new Task1(), 0, 30000);
它不起作用,任何帮助将不胜感激。
谢谢
没有找到相关结果
已邀请:
2 个回复
戊袱
XML代码:
翰冒绢县
这是对的!