0

我想为我的 android 应用程序做一个介绍,所以我想这样做:

这是我的intro.xml

   <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" >

    <ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/logo_inesc" />

  </LinearLayout>

想象一下带有一些菜单和图像的main.xml 。

当用户启动应用程序时,我想向他展示第一个演示图像,然后是应用程序本身以及选项等。

我在我的活动中这样做了:

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.intro);

    try {
        Thread.sleep(6000); //Intro image will be shown for 6 seconds
        setContentView(R.layout.home);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

我不知道这是否是正确的程序,布局正在正确更改,但没有显示图像。有人知道为什么吗?

问候。

4

3 回答 3

3

虽然此解决方案可能有效或类似的方法可能更好:

public class SplashActivity extends Activity {
    protected boolean active = true;
    protected int splashTime = 1000;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash_screen);
        Thread splashTread = new Thread() {
            @Override
            public void run() {
                try {
                    int waited = 0;
                    while(active && (waited < splashTime)) {
                        sleep(100);
                        if(active) {
                            waited += 100;
                        }
                    }
                } catch(InterruptedException e) {
                    // do nothing
                } finally {
                    finish();
                    // Start your Activity here
               }
           }
       };
       splashTread.start();    
   }
}

但是如果用户在启动延迟结束之前按下后退键(并关闭您的应用程序)会怎样。该应用程序可能仍会打开下一个活动,这不是真正的用户友好。

在你的 GUI 中睡觉也是不好的做法。

创建一个 AsyncTask 或另一个单独的线程。

这家伙有一个很好的解决方案,启动画面实际上会消失。

于 2013-03-13T16:47:31.887 回答
1
  1. 如果 LinearLayout 只包含一个孩子,则不需要它。
  2. 为 Thread.sleep() 使用 AsyncTask,否则您将暂停 UI 线程
于 2013-03-13T16:43:56.920 回答
0

您正在使当前线程(UI 线程)休眠,为了使屏幕暂停 6 秒,您需要创建一个单独的线程。

Thread t=new Thread(
new Runnable()
{
public void run()
{
sleep(6000);
}
}
);
t.start();

...........

 setContentView(R.layout.intro);

    try {
        Thread t=new Thread(
    new Runnable()
    {
    public void run()
    {
    Thread.sleep(6000);
    }
    }
    );
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
finally
{
// start new activity with intent if you have a new activity or if you want to change the //contentView change here
setContentView(R.layout.home);
}
  t.start();
于 2013-03-13T16:41:36.193 回答