我在Android Manifest中添加了一个intent过滤器来处理打开URL的意图:
<activity android:name=".TestActivity"
android:label="Test" android:theme="@style/Theme.Titanium"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="test.com" />
</intent-filter>
</activity>
我遇到的问题是,当App已经打开时,此代码会启动App的新实例,这可能会让用户感到非常困惑。启动新实例后,如果用户使用主页按钮导航然后返回到应用程序,则会看到第一个实例。我该如何解决这个问题?
答案 0 :(得分:0)
android:launchMode="singleInstance" >