2 番目のアクティビティ中にアプリケーションからホーム ボタンを押してアプリケーションに戻ると、最初のアクティビティから再開され、最後のアクティビティは再開されません。
何か案が?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.vulneraria.cento"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="17" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/fiorenero"
android:label="@string/app_name" >
<activity
android:name="it.vulneraria.cento.Cento"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="it.vulneraria.cento.CentoGame"
android:label="@string/app_name">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
これはマニフェストです。活動コードが必要ですか? onPause onResume ectのデフォルトのみを使用します...