为所有页面添加Activity(为了接入MTA页面访问统计)
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user