1

エミュレーターに表示される前に、アプリに問題があります。ロックを解除した後、それを見てクリックすることができました。しかし、今は表示されていません。私はほぼ何時間もグーグルで検索しましたが、役に立ちませんでした。先に進むためにあなたの助けが必要です。ありがとう。マニフェストファイルは問題ないようです。エラーはありません。そして、私のソースコードにもエラーはありません。

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>

スプラッシュ.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 に答える