好的,这就是我解决键卫前信息亭模式问题的方法。
首先,我不得不承认该标志FLAG_SHOW_WHEN_LOCKED
不适用于多项活动。因此,我们必须将应用程序简化为一个活动。但这意味着另一个缺点:startActivity
仍然会启动新的活动并导致应用程序闪烁。
为了避免这种情况,我重写了所有活动并将它们制作为片段。现在MainActivity
可以在需要时控制替换片段。它在清单中声明为SingleTop
:
<activity android:name="com.example.DashboardActivity"
android:screenOrientation="landscape"
android:launchMode="singleTop"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.HOME"/>
</intent-filter>
...
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="video" />
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
...
</activity>
意图通过以下方式处理:
@Override
public void onNewIntent(Intent intent){
super.onResume();
dispatchIntent(intent);
}
public void dispatchIntent(Intent intent) {
Log.d(TAG, "Intent:" + intent);
Bundle extras = intent.getExtras();
String action = intent.getAction();
if(extras == null) {
extras = new Bundle();
}
Fragment fragment = null;
if (Intent.ACTION_VIEW.equals(action)) {
extras.putParcelable("uri", intent.getData());
fragment = new VideoplayerFragment();
} else {
fragment = new DashboardFragment();
}
addOrReplaceFragment(fragment, extras);
}
private void addOrReplaceFragment(Fragment fragment, Bundle arguments) {
if (fragment != null && findViewById(CONTENT_CONTAINERVIEW_ID) != null) {
if(arguments != null) {
fragment.setArguments(arguments);
}
FragmentTransaction ft = getFragmentManager().beginTransaction();
String tag = fragment.getClass().getSimpleName();
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE)
.addToBackStack(tag);
if(getFragmentManager().findFragmentByTag(fragment.getClass().getSimpleName()) != null) {
ft.replace(CONTENT_CONTAINERVIEW_ID, fragment, tag);
} else {
ft.add(CONTENT_CONTAINERVIEW_ID, fragment, tag);
}
ft.commit();
}
}
此外,如果活动因任何原因停止,您应该注册SCREEN_ON
并SCREEN_OFF
打算启动活动。
希望它可以帮助某人。