22 lines
678 B
Java
22 lines
678 B
Java
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);
|
|
}
|
|
}
|