0
您好,我在打開Activity
時遇到問題。活動開始時間過長
我打電話給startActivity()
與Intent
點擊Button
。
我需要等待屏幕上顯示Activity
之前4-5秒。
我知道該怎麼做。
itemimg = new ItemsInPacagesImageView(imglist1, this, nazovtripu, 0);
我有17次類似的代碼(與其他ImageView
S)我有這樣的方法與名稱InitItemimg();
我試圖把這個方法上的OnStart活動與此線程
@Override
public void onStart() {
super.onStart();
timer = new Thread() { // new thread
public void run() {
Boolean b = true;
try {
sleep(20);
runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
InitItemimg();;
}
});
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
}
}
};
timer.start();
}
但是沒有解決我的問題,請你有一些想法?謝謝