1

在我的模拟器出现之前,我的应用程序有问题。解锁后,我可以看到它并单击它。但是现在,它没有显示。我用谷歌搜索了近几个小时,但无济于事。请我需要你的帮助,这样我才能继续前进。谢谢。我的清单文件似乎没问题,没有错误。而且我的源代码也没有错误。

飞溅.java

public class Splash extends Activity{

    //MediaPlayer ourSong; // for our splash background song

    @Override
    protected void onCreate(Bundle iHF) {
        super.onCreate(iHF);
        setContentView(R.layout.splash);

            Thread timer = new Thread(){
                public void run(){
                    try{
                        sleep(1000); // sleeps/delays for 1 second
                    } // end try
                    catch(InterruptedException e){
                        e.printStackTrace();
                    }finally{
                        // this is going to create new intent activity for Ihealthfirst
                        // based on the action name (com.fps.ihealthfirst.IHEALTHFIRST)
                        Intent openIHealthFirst = new Intent("com.fps.iHealthFirst.IHEALTHFIRSTACTIVITY");
                        startActivity(openIHealthFirst);
                    }// end finally
                } // end run method
            }; // end thread

            timer.start();
        } // end onCreate method

    @Override
    protected void onPause() {
        super.onPause();
        finish();
    }



    } // end Splash class

显现

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

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".Splash"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>        
        </activity>


    </application>

</manifest>

主要的.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" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Welcome!" />

</LinearLayout>

飞溅.xml

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


</LinearLayout>
4

2 回答 2

2

尝试在清单中替换此行:

<category android:name="android.intent.category.DEFAULT"/>

对此:

<category android:name="android.intent.category.LAUNCHER"/>

就像现在一样,您没有定义启动器活动。如果您希望保留 DEFAULT 选项,您可以添加我发布的行而不是替换它。

于 2012-06-01T05:46:53.483 回答
0

试试这些:

  • 重启模拟器
  • 如果不起作用,请重新创建模拟器
  • 如果不起作用,请重新启动 IDE
  • 如果不起作用,请检查所有其他应用程序是否是这种情况
于 2012-06-01T05:10:38.787 回答