我的应用程序没有出现在模拟器中

时间:2012-06-01 05:07:50

标签: android emulation android-2.3-gingerbread

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

Splash.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>

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" >

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

</LinearLayout>

splash.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>

2 个答案:

答案 0 :(得分:2)

尝试在清单中替换此行:

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

到此:

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

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

答案 1 :(得分:0)

试试这些:

  • 重新启动模拟器
  • 如果不起作用,请重新创建模拟器
  • 如果不起作用,请重新启动IDE
  • 如果不起作用,请检查所有其他应用程序是否属于这种情况