2016-08-12 7 views
0

私はランチャーアプリケーションを開発しています。私がランチャー上にいるとき、私は自宅を押すと、アクティビティはアニメートされ、アクティビティの新しいインスタンスが開きます。ホームを押すときにホーム画面の操作を続けるだけで何ができますか?なぜ私のアンドロイドランチャーはホームプレスで再開します

<application 
     android:name=".BaseApplication" 
     android:allowBackup="true" 
     android:launchMode="singleTask" 
     android:clearTaskOnLaunch="true" 
     android:stateNotNeeded="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 


     <activity android:name=".MainActivity" 
        android:launchMode="singleInstance" 
        android:excludeFromRecents="true" 
        android:windowSoftInputMode="adjustPan" 
      android:screenOrientation="sensorPortrait" 
      android:configChanges="orientation|keyboardHidden"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN"/> 

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

答えて

0

アクティビティのlaunchModeを "singleTask"または "singleTop"に設定すると、この問題が解決されました。

関連する問題