28 lines
808 B
Java
28 lines
808 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import com.gh.common.util.EntranceUtils;
|
|
import com.gh.gamecenter.libao.LibaoWrapperFragment;
|
|
|
|
/**
|
|
* Created by khy on 2016/12/12.
|
|
*/
|
|
@Deprecated
|
|
public class LibaoActivity extends NormalActivity {
|
|
|
|
@NonNull
|
|
public static Intent getIntent(Context context, String entrance) {
|
|
Bundle args = new Bundle();
|
|
args.putString(EntranceUtils.KEY_ENTRANCE, entrance);
|
|
// return new IntentFactory.Builder(context)
|
|
// .setActivity(LibaoActivity.class)
|
|
// .setFragment(LibaoWrapperFragment.class).setArgs(args).build();
|
|
return getIntent(context, LibaoWrapperFragment.class, args);
|
|
}
|
|
|
|
}
|