退出导航功能调整

This commit is contained in:
zhangyuanzhen
2020-02-19 18:37:48 +08:00
parent 2a79c434f9
commit 9599f79840
3 changed files with 23 additions and 10 deletions

View File

@@ -134,12 +134,12 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
mExitNavi = findViewById( R.id.module_entrance_id_exit_navi );
mExitNavi.setOnClickListener( view -> {
if ( mMogoNavi != null ) {
if ( mIsLock ) {
//if ( mIsLock ) {
NaviNoticeDialog naviNoticeDialog = new NaviNoticeDialog( getContext() );
naviNoticeDialog.show();
} else {
mMApUIController.recoverLockMode();
}
//} else {
// mMApUIController.recoverLockMode();
//}
}
} );
@@ -251,7 +251,7 @@ public class EntranceFragment extends MvpFragment< EntranceView, EntrancePresent
if ( isLock ) {
mExitNavi.setText( R.string.module_ext_str_exit_navi );
} else {
mExitNavi.setText( R.string.module_ext_str_exit_path );
mExitNavi.setText( R.string.module_ext_str_exit_navi );
}
}