1

我正在开发一个android应用程序,我想放一张默认图片。这在 iPhone 应用程序中很常见;当应用程序启动时,它会显示开发人员的名称和应用程序的名称(例如)和图像。

我认为这是可能的,因为像 Facebook 这样的应用程序在应用程序启动之前就有这些默认屏幕。我该如何实施这些?

4

2 回答 2

3

你想要的是一个启动画面:

于 2012-05-13T09:15:14.043 回答
3

在您onCreate()的启动活动方法中,请尝试以下操作:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Thread proceed = new Thread(){

        public void run()
        {
            try {
                sleep(5000);
                Intent next = new Intent("nextActivityIntentGoesHere");
                startActivity(next);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            finally{
                finish();
            }

        }
        };
        proceed.start();
    }

main.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"
    android:background="@drawable/welcomescreenpicture" >
</LinearLayout>

这将welcomescreenpicture在应用程序启动时显示 5 秒钟。

于 2012-05-13T09:39:46.767 回答