This commit is contained in:
chenjuntao
2018-10-23 18:33:25 +08:00
parent 02d61989fd
commit 9118119901
37 changed files with 275 additions and 138 deletions

View File

@ -13,10 +13,11 @@ import com.gh.gamecenter.message.MessageNormalFragment;
public class MessageInviteActivity extends NormalActivity {
public static Intent getIntent(Context context, String messageType, String entrance) {
public static Intent getIntent(Context context, String messageType, String outerInfo, String entrance) {
Bundle bundle = new Bundle();
bundle.putString(EntranceUtils.KEY_MESSAGE_TYPE, messageType);
bundle.putString(EntranceUtils.KEY_ENTRANCE, entrance);
bundle.putString(EntranceUtils.KEY_OUTER_INFO, outerInfo);
return getTargetIntent(context, MessageInviteActivity.class, MessageNormalFragment.class, bundle);
}
}