new Thread(){
public void run() {
while(
true){
try {
Thread.sleep(
1000);
}
catch (InterruptedException e) {
e.printStackTrace();
}
runOnUiThread(
new Runnable() {
@Override
public void run() {
}
});
}
};
}.start();
转载请注明原文地址: https://ju.6miu.com/read-965567.html