光环助手V3.2 RELEASE(20180418-1420)测试问题汇总(部分完成)

This commit is contained in:
kehaoyuan
2018-04-19 16:49:51 +08:00
parent eb9b4cd132
commit 73bc256ce6
21 changed files with 149 additions and 44 deletions

View File

@ -19,6 +19,7 @@ import android.widget.ImageView;
import android.widget.TextView;
import com.gh.base.BaseActivity;
import com.gh.base.fragment.BaseFragment_ViewPager;
import com.gh.common.util.DialogUtils;
import com.gh.common.util.PackageUtils;
import com.gh.common.util.PlatformUtils;
@ -26,6 +27,7 @@ import com.gh.common.util.TagUtils;
import com.gh.common.util.TimestampUtils;
import com.gh.common.util.TokenUtils;
import com.gh.download.DownloadManager;
import com.gh.gamecenter.fragment.MainWrapperFragment;
import com.gh.gamecenter.manager.FilterManager;
import com.lightgame.download.FileUtils;
import com.lightgame.utils.AppManager;
@ -155,6 +157,12 @@ public class SplashScreenActivity extends BaseActivity {
private void launch() {
Bundle bundle = getIntent().getExtras();
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
if (isNewFirstLaunch) {
intent.putExtra(BaseFragment_ViewPager.ARGS_INDEX, MainWrapperFragment.INDEX_ASK);
Intent[] intents = new Intent[]{intent,CommunitiesSelectActivity.getIntent(this)};
startActivities(intents);
return;
}
if (bundle != null) intent.putExtras(bundle);
startActivity(intent);
finish();