This commit is contained in:
huangzhuanghua
2016-09-09 18:23:54 +08:00
parent 5316164f00
commit f858ba0b70
58 changed files with 1038 additions and 1874 deletions

View File

@ -27,6 +27,7 @@ import com.gh.download.DownloadManager;
import com.gh.gamecenter.MainActivity;
import com.gh.gamecenter.R;
import com.gh.gamecenter.eventbus.EBShowDialog;
import com.gh.gamecenter.listener.OnCallBackListener;
import com.gh.gamecenter.manager.SystemBarTintManager;
import com.gh.gamecenter.manager.SystemBarTintManager.SystemBarConfig;
@ -36,7 +37,7 @@ import java.util.ArrayList;
import cn.sharesdk.framework.ShareSDK;
import de.greenrobot.event.EventBus;
public class BaseActivity extends Activity {
public class BaseActivity extends Activity implements OnCallBackListener {
private SystemBarTintManager tintManager;
@ -215,4 +216,18 @@ public class BaseActivity extends Activity {
DownloadManager.getInstance(this).initGameMap();
}
@Override
public void loadDone() {
}
@Override
public void loadError() {
}
@Override
public void loadEmpty() {
}
}