0

これが私のonCreateメソッドです

     @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        // Show the splash screen
        setContentView(R.layout.progressbar);
        initActionbar();




        mytext=(TextView)findViewById(R.id.progresstextview1);
        mytext1 = (TextView)findViewById(R.id.progresstextview2);
        mytext2 = (TextView)findViewById(R.id.progresstextview3);



        Thread t = new Thread();
        Thread t1 = new Thread();
        Thread t2 = new Thread();

        t.start();
        mytext.setVisibility(View.VISIBLE);


        t1.start();
        mytext1.setVisibility(View.VISIBLE);


        t2.start();
        mytext2.setVisibility(View.VISIBLE);
  }

これが私の実行方法です

   @Override
    public void run() {
        // TODO Auto-generated method stub
        for(int i=0;i<1000;i++)
        {

        }
    }

3 つの TextView を少し遅れて次々とロードする必要があります。問題は、3 つのテキストビューすべてが最初にロードされ、遅延が発生しないことです。別の問題は、メイン UI スレッドが数秒後に開始されることです。この点は大歓迎です!!!

4

1 に答える 1