33 lines
875 B
Java
33 lines
875 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
|
|
import com.gh.common.util.DisplayUtils;
|
|
import com.gh.common.util.ExtensionsKt;
|
|
import com.gh.gamecenter.info.ConcernFragment;
|
|
|
|
/**
|
|
* Created by khy on 10/04/18.
|
|
*/
|
|
|
|
public class ConcernInfoActivity extends NormalActivity {
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
ExtensionsKt.updateStatusBarColor(this, R.color.black, R.color.white);
|
|
}
|
|
|
|
public static Intent getIntent(Context context) {
|
|
return getTargetIntent(context, ConcernInfoActivity.class, ConcernFragment.class);
|
|
}
|
|
|
|
@Override
|
|
protected void onNightModeChange() {
|
|
super.onNightModeChange();
|
|
ExtensionsKt.updateStatusBarColor(this, R.color.black, R.color.white);
|
|
}
|
|
}
|