Merge branch 'dev_pull_unwake' into dev

This commit is contained in:
tongchenfei
2020-10-20 20:21:51 +08:00
8 changed files with 249 additions and 105 deletions

View File

@@ -37,6 +37,8 @@ public class SchemeIntent implements IMogoStatusChangedListener {
public static final String TYPE_SHOW_ONLINE_CAR_PANEL = "showOnlineCarPanel";
public static final String TYPE_SHOW_SHARE_PANEL = "showSharePanel";
private IMogoServiceApis mApis;
private Context mContext;
@@ -150,6 +152,9 @@ public class SchemeIntent implements IMogoStatusChangedListener {
break;
case TYPE_SHOW_ONLINE_CAR_PANEL:
handleShowOnlineCarPanel( target );
case TYPE_SHOW_SHARE_PANEL:
handleShowSharePanel();
break;
default:
break;
@@ -199,6 +204,11 @@ public class SchemeIntent implements IMogoStatusChangedListener {
mApis.getOnlineCarPanelApi().showPanel();
}
private void handleShowSharePanel() {
Logger.d(TAG, "handleShowSharePanel");
// todo 跳转到热心指数
}
@Override
public void onStatusChanged( StatusDescriptor descriptor, boolean isTrue ) {
if ( descriptor == StatusDescriptor.MAIN_PAGE_RESUME ) {