为所有页面添加Activity(为了接入MTA页面访问统计)

This commit is contained in:
kehaoyuan
2018-04-10 20:50:19 +08:00
parent f0c952848a
commit 64f2c83894
58 changed files with 603 additions and 479 deletions

View File

@ -0,0 +1,21 @@
package com.gh.gamecenter;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import com.gh.gamecenter.ask.entity.QuestionsDetailEntity;
import com.gh.gamecenter.ask.questionsdetail.invite.QuestionsInviteWrapperFragment;
/**
* Created by khy on 10/04/18.
*/
public class QuestionsInviteActivity extends NormalActivity {
public static Intent getIntent(Context context, QuestionsDetailEntity entity) {
Bundle bundle = new Bundle();
bundle.putParcelable(QuestionsDetailEntity.TAG, entity);
return getTargetIntent(context, QuestionsInviteActivity.class, QuestionsInviteWrapperFragment.class, bundle);
}
}