-1

可能重复:
Android 中的 Splash 无法正常工作

我的启动画面保持静止。它不会让主应用程序运行。这是我正在使用的代码:我有三个文件:Splash.xml、Splash.java 和 SplashNew.java

     package com.timchecklist;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;

public class Splash extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Thread Timer = new Thread() {
            public void run() {

                try {
                    sleep(3000);
                    startActivity(new Intent("com.timchecklist.SPLASHNEW"));

                } catch (InterruptedException e) {
                    e.printStackTrace();
                } finally {
                    finish();
                }
            }
        };
        Timer.start();
    }

}

SplashNew.java

   package com.timchecklist;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;

public class SplashNew extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.splash);

    }

}

飞溅.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:background="@drawable/pic1"
    android:gravity="center"
    android:orientation="vertical" >

</LinearLayout>

AndroidManifest.xml

  <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.timchecklist"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".TimCheckListActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.NoTitleBar" >
        </activity>
        <activity
            android:name=".SplashNew"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

任何想法/帮助?

伙计们

4

2 回答 2

2

startActivity(new Intent("com.timchecklist.SPLASHNEW"));改为startActivity(new Intent(SplashNew.class));

于 2012-06-12T15:18:42.437 回答
0

如果您在此期间没有任何工作要做,请不要让您的用户等待 3 秒等待启动屏幕。如果您必须为您的应用程序做一些工作,那么在您显示启动屏幕时在后台执行该工作。如果你强迫你的用户在使用你的应用时无缘无故地等待 3 秒,他们会很不高兴。

这是一篇关于闪屏的好帖子,其中有一个实现它们的方法示例。

但是,如果您没有充分的理由让用户等待,那么我真的不能强调不要让他们等待。

编辑:另外,如果您坚持让您的用户至少等待一个毫无意义的启动屏幕,请实施某种方式来检查用户是否在启动过程中按下(退出您的应用程序),以及他们是否没有调用 startActivity ()。以你现在的方式,即使用户在启动过程中按下(如果你让他们无缘无故地等待 3 秒,他们会这样做。)你的线程仍然会调用 startActivity() 这将删除你的 Activity即使用户通过按下后退按钮退出。上面的链接谈到了这一点。

于 2012-06-12T15:46:41.623 回答