1

新しい Android アプリはプレイストアからダウンロードできますが、ダウンロードしたアプリに表示されません。Playストアからダウンロードすると、通常、アプリを「開く」オプションと「アンインストールする」オプションがあり、アンインストールボタンのみが表示されます。( http://i.imgur.com/jNTvJq2.png開くボタンがないことに注意してください)

これが私のマニフェストです。実行したすべてのテストでエラーはありませんでした。

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/iconimage"
        android:label="@string/app_name"
        android:theme="@style/Theme.Sherlock" >

        <activity
            android:name="com.jackattackapps.bigl.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAINACTIVITY" />

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


        <activity
            android:name="com.jackattackapps.bigl.Splashscreen"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.SPLASHSCREEN" />

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

        <activity android:name="com.google.ads.AdActivity"
                      android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>



    </application>

</manifest>

これは、アプリケーションの開始時にロードされるはずのアクティビティです。

package com.jackattackapps.bigl;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;

public class Splashscreen extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {

    // TODO Auto-generated method stub

    super.onCreate(savedInstanceState);

    setContentView(R.layout.splashscreen);
    Thread timer = new Thread(){
        public void run(){
            try{

                MediaPlayer ourSong = MediaPlayer.create(Splashscreen.this, R.raw.splashsound);
                ourSong.start();
                sleep(2300);

            }
            catch (InterruptedException e){
                e.printStackTrace();

            } finally {

                Intent openMainActivity = new Intent("android.intent.action.MAINACTIVITY");
                startActivity(openMainActivity);

            }
        }
    };
    timer.start();
}

@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    finish();

}

}

さらに情報が必要な場合は、コメントしてください。助けていただければ幸いです。

4

1 に答える 1

1

Launcherアクティビティにはこれが必要ですIntent Filter

<intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
于 2013-08-28T14:00:22.373 に答える