23 lines
625 B
Java
23 lines
625 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import com.halo.assistant.fragment.user.UserInfoFragment;
|
|
|
|
/**
|
|
* Created by khy on 23/06/17.
|
|
*/
|
|
public class UserInfoActivity extends NormalActivity {
|
|
|
|
@NonNull
|
|
public static Intent getIntent(Context context) {
|
|
// return new IntentFactory.Builder(context)
|
|
// .setActivity(UserInfoActivity.class)
|
|
// .setFragment(UserInfoFragment.class).build();
|
|
return getTargetIntent(context, UserInfoActivity.class, UserInfoFragment.class);
|
|
}
|
|
|
|
}
|