1、统一了entrance
2、统一了部分跳转intent,传参返回intent 3、修改出dialogfragment 4、clipboardmanager等处理
This commit is contained in:
@ -63,6 +63,15 @@ public class SplashScreenActivity extends BaseActivity {
|
||||
return intentList.toArray(new Intent[intentList.size()]);
|
||||
}
|
||||
|
||||
public static Intent getSplashScreenIntent(Context context, Bundle bundle) {
|
||||
Intent intent = new Intent(context, SplashScreenActivity.class);
|
||||
intent.setAction(Intent.ACTION_MAIN);
|
||||
intent.addCategory(Intent.CATEGORY_LAUNCHER);
|
||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
intent.putExtra(KEY_DATA, bundle);
|
||||
return intent;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user