2
我不知道,什麼是阻止這個工作。我有代碼設置導致3秒延遲,但視圖不工作,它保持黑色,然後3秒後切換到下一個屏幕。我想,我做的時間延遲,一些沒有被調用內Android的顯示佈局...Android之間的時間延遲
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
start = System.currentTimeMillis();
setContentView(R.layout.team);
}
protected void onStart()
{
super.onStart();
while(game)
{
now = System.currentTimeMillis();
if (now - start >= 5000)
{
game = false;
Intent about = new Intent(this, SplashScreen.class);
startActivity(about);
}
}
}
完美沒有意識到這必須在一個線程內完成 – Chris
我很高興我幫助:) – Shah