bugfix: FX-305

This commit is contained in:
wangcongtao
2020-07-21 15:52:50 +08:00
parent e23d243d2f
commit ef29d59b43
2 changed files with 17 additions and 1 deletions

View File

@@ -45,6 +45,20 @@ public class AppsListActivity extends MvpActivity< AppsListView, AppsListPresent
}
super.onCreate( savedInstanceState );
AppServiceHandler.getApis().getStatusManagerApi().setAppListUIShow( TAG, true );
}
@Override
protected void onStart() {
super.onStart();
try {
AppServiceHandler.getApis().getAdasControllerApi().closeADAS();
} catch ( Exception e ) {
}
}
@Override
protected void onRestart() {
super.onRestart();
try {
AppServiceHandler.getApis().getAdasControllerApi().closeADAS();
} catch ( Exception e ) {

View File

@@ -271,6 +271,8 @@ public class MediaWindow2 implements IMusicView {
@Override
public void onAppExit() {
mWindowView.setVisibility(View.GONE);
if ( mWindowView != null ) {
mWindowView.setVisibility(View.GONE);
}
}
}