27 lines
734 B
Java
27 lines
734 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
|
|
import com.gh.common.util.EntranceUtils;
|
|
import com.gh.gamecenter.message.KeFuFragment;
|
|
|
|
/**
|
|
* Created by khy on 10/04/18.
|
|
*/
|
|
|
|
public class MessageKeFuActivity extends NormalActivity {
|
|
|
|
@Override
|
|
protected Intent provideNormalIntent() {
|
|
return getTargetIntent(this, MessageKeFuActivity.class, KeFuFragment.class);
|
|
}
|
|
|
|
public static Intent getIntent(Context context, String entrance) {
|
|
Bundle bundle = new Bundle();
|
|
bundle.putString(EntranceUtils.KEY_ENTRANCE, entrance);
|
|
return getTargetIntent(context, MessageKeFuActivity.class, KeFuFragment.class, bundle);
|
|
}
|
|
}
|