22 lines
537 B
Java
22 lines
537 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import com.gh.gamecenter.common.base.activity.ToolBarActivity;
|
|
import com.halo.assistant.fragment.user.SelectPortraitFragment;
|
|
|
|
/**
|
|
* Created by khy on 2017/2/10.
|
|
*/
|
|
public class SelectUserIconActivity extends ToolBarActivity {
|
|
|
|
@NonNull
|
|
public static Intent getIntent(Context context) {
|
|
return getTargetIntent(context, SelectUserIconActivity.class, SelectPortraitFragment.class);
|
|
}
|
|
|
|
}
|