アクティビティのレイアウトを変更するスレッドを作成したい...ウェルカムページとアクティビティメインの2つのレイアウトがあります...スレッドの目標:アプリケーションを起動すると、ウェルカムページのレイアウトがわずか5秒で表示され、その後、レイアウトは再び activity_main になります ...
以下のようにコードを書きました。
package com.example.tripolimazad;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;
public class MainActivity extends Activity {
public TextView counter = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.welcomepage);
counter = (TextView) findViewById(R.id.Counter);
Thread th=new Thread(){
@Override
public void run(){
try
{
Thread.sleep(10000);
setContentView(R.layout.activity_main);
}catch (InterruptedException e) {
}
}
};
th.start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
しかし、うまくいきません!!! 誰でも解決策を教えてください!